A dark, vibrant Neovim colorscheme derived from the Adna theme, featuring cool teal accents, bright pink foreground, and a deep charcoal background optimized for long coding sessions.
- Full Tree-sitter syntax highlighting support
- Native LSP diagnostic highlights
- 16-color terminal palette mapped to theme colors
- Compatible with Neovim 0.8+ (requires Lua API support)
- Preconfigured highlights for popular plugins:
- NvimTree
- Telescope
- LSP Signatures
- Git Signs
- Automatic dark mode detection (sets
background = "dark")
Add the following to your Neovim plugin configuration (e.g., ~/.config/nvim/lua/plugins/adna.lua):
{
"fross100/adna.nvim",
lazy = false,
priority = 1000,
config = function()
vim.cmd("colorscheme adna")
end,
}use({
"fross100/adna.nvim",
config = function()
vim.cmd("colorscheme adna")
end,
})Add to your ~/.config/nvim/init.vim or ~/.vimrc:
Plug 'fross100/adna.nvim'Then apply the colorscheme after plugin load:
colorscheme adnaEnable the colorscheme in your Neovim configuration:
-- In your init.lua or plugin config
vim.cmd("colorscheme adna")Or toggle it live in Neovim:
:colorscheme adnaMIT License (see LICENSE for details)
- Original Adna theme by fross100
- Built using the Build Your Own Neovim Colorscheme in Lua guide
- Inspired by the minimal ymir.nvim colorscheme