Skip to content

dna113p/sandcastle.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

sandcastle.nvim

A dark Neovim colorscheme inspired by the CodeSandbox VS Code theme.

Features

  • 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

Installation

{
  "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,
}

Configuration

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,
  },
})

Supported Plugins

Color Palette

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

Inspiration & Credits

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.

License

MIT

About

Nvim theme inspired by the theme on codesandbox

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors