neovim
neovim copied to clipboard
feature: Palette overrides
Describe the solution you'd like
Please add an option to override palette colours. Right now, I usually use before_highlight
to make my adjustments:
require('rose-pine').setup({
before_highlight = function(group, highlight, palette)
if highlight.fg == palette.pine then
highlight.fg = "#XXXXXX"
end
...
end
})
However, I'd prefer to have it as a standard option and have ability to add variants for all theme variants.
Additional context
No response