feat: support custom highlight blending

Example:

```
{
	highlight_groups = {
		StatusLine = { bg = 'love', blend = 10 }
	}
}
```
This commit is contained in:
mvllow 2023-01-08 16:13:02 -05:00
commit 93c760b393
No known key found for this signature in database
3 changed files with 20 additions and 10 deletions

View file

@ -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 },
}
})