mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
- move config to lua - use rose for search match - fix background flicker when automatically switching to dawn - remove unneeded highlights (please report regressions) - remove deprecated `LspDiagnostics*` - remove `LspReference*` - improve overall consistency between elements - non-treesitter updates to match treesitter styles - update popup menu scrollbar and selection - update telescope selection - match cursorcolumn to cursorline
35 lines
1.1 KiB
Lua
35 lines
1.1 KiB
Lua
local palette = require('rose-pine.palette')
|
|
local colors = palette[vim.g.rose_pine_variant or 'main']
|
|
|
|
return {
|
|
normal = {
|
|
a = { bg = colors.rose, fg = colors.base, gui = 'bold' },
|
|
b = { bg = colors.overlay, fg = colors.rose },
|
|
c = { bg = colors.base, fg = colors.text },
|
|
},
|
|
insert = {
|
|
a = { bg = colors.foam, fg = colors.base, gui = 'bold' },
|
|
b = { bg = colors.overlay, fg = colors.foam },
|
|
c = { bg = colors.base, fg = colors.text },
|
|
},
|
|
visual = {
|
|
a = { bg = colors.iris, fg = colors.base, gui = 'bold' },
|
|
b = { bg = colors.overlay, fg = colors.iris },
|
|
c = { bg = colors.base, fg = colors.text },
|
|
},
|
|
replace = {
|
|
a = { bg = colors.pine, fg = colors.base, gui = 'bold' },
|
|
b = { bg = colors.overlay, fg = colors.pine },
|
|
c = { bg = colors.base, fg = colors.text },
|
|
},
|
|
command = {
|
|
a = { bg = colors.love, fg = colors.base, gui = 'bold' },
|
|
b = { bg = colors.overlay, fg = colors.love },
|
|
c = { bg = colors.base, fg = colors.text },
|
|
},
|
|
inactive = {
|
|
a = { bg = colors.base, fg = colors.muted, gui = 'bold' },
|
|
b = { bg = colors.base, fg = colors.muted },
|
|
c = { bg = colors.base, fg = colors.muted },
|
|
},
|
|
}
|