A dark Neovim colorscheme inspired by the CodeSandbox VS Code theme.
- High contrast dark theme with lime green accents
- Tree-sitter and LSP semantic token support
- 12+ plugin integrations out of the box
- Transparent background option
{
"your-username/sandcastle.nvim",
lazy = false,
priority = 1000,
config = function()
require("sandcastle").setup()
vim.cmd.colorscheme("sandcastle")
end,
}use {
"your-username/sandcastle.nvim",
config = function()
require("sandcastle").setup()
vim.cmd.colorscheme("sandcastle")
end,
}require("sandcastle").setup({
transparent_background = false,
terminal_colors = true,
integrations = {
telescope = true,
cmp = true,
gitsigns = true,
nvim_tree = true,
neo_tree = true,
lualine = true,
bufferline = true,
indent_blankline = true,
which_key = true,
lazy = true,
mason = true,
notify = true,
mini = true,
native_lsp = true,
treesitter = true,
},
})- telescope.nvim
- nvim-cmp
- gitsigns.nvim
- nvim-tree.lua
- neo-tree.nvim
- bufferline.nvim
- indent-blankline.nvim
- which-key.nvim
- lazy.nvim
- mason.nvim
- nvim-notify
- mini.nvim
| Color | Hex | Usage |
|---|---|---|
| Lime | #edffa5 |
Accents, UI highlights |
| Neon Green | #CDF861 |
Functions |
| Soft Green | #BFD084 |
Strings |
| Mint | #b3e8b4 |
Operators |
| Purple | #A390FF |
Keywords |
| Light Purple | #CABEFF |
Types |
| Cyan | #7AD9FB |
Constants |
This colorscheme is inspired by and based on the color palette from the official CodeSandbox VS Code theme, which is licensed under the Apache 2.0 license.
MIT