mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
feat: support custom highlight blending
Example:
```
{
highlight_groups = {
StatusLine = { bg = 'love', blend = 10 }
}
}
```
This commit is contained in:
parent
eda49fde9e
commit
93c760b393
3 changed files with 20 additions and 10 deletions
|
|
@ -85,7 +85,11 @@ require('rose-pine').setup({
|
|||
|
||||
-- Change specific vim highlight groups
|
||||
highlight_groups = {
|
||||
ColorColumn = { bg = 'rose' }
|
||||
ColorColumn = { bg = 'rose' },
|
||||
|
||||
-- Blend colours against the "base" background
|
||||
CursorLine = { bg = 'foam', blend = 10 },
|
||||
StatusLine = { fg = 'love', bg = 'love', blend = 10 },
|
||||
}
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue