mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Ease up diff backgrounds (#104)
Lower the blend intensity to leave sufficient colour difference for the eye to catch on.
This commit is contained in:
parent
27a822e95b
commit
02fa3a0368
1 changed files with 3 additions and 3 deletions
|
|
@ -29,10 +29,10 @@ function M.get(config)
|
|||
CursorLineNr = { fg = p.text },
|
||||
DarkenedPanel = { bg = groups.panel },
|
||||
DarkenedStatusline = { bg = groups.panel },
|
||||
DiffAdd = { bg = blend(groups.git_add, groups.background, 0.5) },
|
||||
DiffAdd = { bg = blend(groups.git_add, groups.background, 0.2) },
|
||||
DiffChange = { bg = p.overlay },
|
||||
DiffDelete = { bg = blend(groups.git_delete, groups.background, 0.5) },
|
||||
DiffText = { bg = blend(groups.git_text, groups.background, 0.5) },
|
||||
DiffDelete = { bg = blend(groups.git_delete, groups.background, 0.2) },
|
||||
DiffText = { bg = blend(groups.git_text, groups.background, 0.2) },
|
||||
diffAdded = { link = 'DiffAdd' },
|
||||
diffChanged = { link = 'DiffChange' },
|
||||
diffRemoved = { link = 'DiffDelete' },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue