A dark Neovim colorscheme with a fluorescent palette.
| Role | Hex |
|---|---|
| Background | #040616 |
| Foreground | #ffffff |
| Cyan | #2DFEE4 / #54D4FF |
| Green | #00FF7A / #89BB67 |
| Yellow | #FFFA00 / #FFCC00 |
| Magenta | #F400F8 / #FF007A |
| Orange | #F96A38 |
| Blue | #0096FA / #1E93F1 |
| Grey | #969896 |
- Neovim 0.9+
termguicolorsenabled
lazy.nvim:
{
"bodak/fluorescence-vim",
lazy = false,
priority = 1000,
config = function()
vim.cmd.colorscheme("neon")
end,
}- Core Vim highlight groups
- Neovim UI (
NormalFloat,FloatBorder,WinSeparator,WinBar, etc.) - Diagnostics (
DiagnosticError,DiagnosticWarn,DiagnosticUnderline*, etc.) - Git signs (
GitSignsAdd,GitSignsChange,GitSignsDelete) - Treesitter captures (
@variable,@function,@keyword, etc.) - LSP semantic tokens (
@lsp.type.*,@lsp.mod.*) - Completion menu (
PmenuKind,PmenuExtra)