A dark Neovim colorscheme inspired by the Gogh Panda terminal palette, with neon cyan and pink accents.
- Dark background with high contrast
- Neon cyan (
#26FFD4) as primary accent - Pink (
#FB055A) for keywords and variables - Blue (
#5C9FFF) for functions and paths - Orange (
#FDAA5A) for constants and numbers - Full support for Treesitter, LSP, and popular plugins
| Color | Hex | Usage |
|---|---|---|
| Background | #1D1E20 |
Editor background |
| Foreground | #F0F0F0 |
Normal text |
| Cyan | #26FFD4 |
Strings, types, primary accent |
| Pink | #FB055A |
Keywords, variables, errors |
| Blue | #5C9FFF |
Functions, paths, info |
| Orange | #FDAA5A |
Constants, numbers, warnings |
{
"DinimixisDEMZ/panda.nvim",
lazy = false,
priority = 1000,
config = function()
require("panda").setup()
end,
}Then set the colorscheme:
vim.cmd.colorscheme("panda")Or in your LazyVim config:
{
"LazyVim/LazyVim",
opts = {
colorscheme = "panda",
},
}use "DinimixisDEMZ/panda.nvim"Plug 'DinimixisDEMZ/panda.nvim'You can customize the colors by passing a config table:
require("panda").setup({
colors = {
bg = "#1D1E20",
cyan = "#26FFD4",
pink = "#FB055A",
-- override any color
},
})- Treesitter
- LSP (nvim-lspconfig)
- Telescope
- NvimTree
- Bufferline
- WhichKey
- Mini.nvim
- GitSigns
- Diagnostics
- Gogh-Co/Gogh - Original Panda terminal palette
- folke/tokyonight.nvim - Structure and highlight groups
- XiaomiMiMo/MiMo - MiMo language model by Xiaomi
- OpenCode - AI coding assistant
MIT