slightly adjust DiffDelete saturation
This commit is contained in:
@@ -11,7 +11,7 @@ let s:p.inactive.middle = [ [ "#596A76", "#DAD3CF" ] ]
|
||||
let s:p.inactive.right = [ [ "#596A76", "#DAD3CF" ] ]
|
||||
|
||||
let s:p.insert.left = [ [ "#564E4A", "#DDE6CD", "bold" ], [ "#564E4A", "#C4B6AF" ] ]
|
||||
let s:p.replace.left = [ [ "#564E4A", "#E9CACE", "bold" ], [ "#564E4A", "#C4B6AF" ] ]
|
||||
let s:p.replace.left = [ [ "#564E4A", "#E7CBCE", "bold" ], [ "#564E4A", "#C4B6AF" ] ]
|
||||
let s:p.visual.left = [ [ "#564E4A", "#D2DFE7", "bold" ], [ "#564E4A", "#C4B6AF" ] ]
|
||||
|
||||
let s:p.tabline.left = [ [ "#2C363C", "#C4B6AF", "italic" ] ]
|
||||
|
||||
@@ -64,7 +64,7 @@ highlight CursorLineNr guifg=#2C363C guibg=NONE guisp=NONE gui=bold
|
||||
highlight Delimiter guifg=#8E817B guibg=NONE guisp=NONE gui=NONE
|
||||
highlight DiffAdd guifg=NONE guibg=#DDE6CD guisp=NONE gui=NONE
|
||||
highlight DiffChange guifg=NONE guibg=#C0DAF2 guisp=NONE gui=NONE
|
||||
highlight DiffDelete guifg=NONE guibg=#E9CACE guisp=NONE gui=NONE
|
||||
highlight DiffDelete guifg=NONE guibg=#E7CBCE guisp=NONE gui=NONE
|
||||
highlight DiffText guifg=#2C363C guibg=#99C6E9 guisp=NONE gui=NONE
|
||||
highlight Directory guifg=NONE guibg=NONE guisp=NONE gui=bold
|
||||
highlight Error guifg=#A8334C guibg=NONE guisp=NONE gui=NONE
|
||||
@@ -189,7 +189,6 @@ highlight! link TabLineFill StatusLineNC
|
||||
highlight! link TelescopeBorder FloatBorder
|
||||
highlight! link TelescopeSelection CursorLine
|
||||
highlight! link TermCursor Cursor
|
||||
highlight! link TermCursorNC lCursor
|
||||
highlight! link TroubleNormal Function
|
||||
highlight! link TroubleSource Constant
|
||||
highlight! link TroubleText Function
|
||||
|
||||
@@ -22,7 +22,7 @@ return {
|
||||
},
|
||||
|
||||
replace = {
|
||||
a = { bg = "#E9CACE", fg = common_fg, gui = "bold" },
|
||||
a = { bg = "#E7CBCE", fg = common_fg, gui = "bold" },
|
||||
},
|
||||
|
||||
inactive = {
|
||||
|
||||
@@ -48,7 +48,6 @@ local theme = lush(function()
|
||||
lCursor { Cursor, bg = Cursor.bg.li(20) }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
||||
-- CursorIM { }, -- like Cursor, but used when in IME mode |CursorIM|
|
||||
TermCursor { Cursor }, -- cursor in a focused terminal
|
||||
TermCursorNC { lCursor }, -- cursor in an unfocused terminal
|
||||
|
||||
CursorLine { bg = Normal.bg.da(4) }, -- Screen-line at the cursor, when 'cursorline' is set. Low-priority if foreground (ctermfg OR guifg) is not set.
|
||||
CursorColumn { CursorLine }, -- Screen-column at the cursor, when 'cursorcolumn' is set.
|
||||
@@ -56,7 +55,7 @@ local theme = lush(function()
|
||||
|
||||
DiffAdd { bg = c.leaf.de(77).li(82).abs_da(diff_bg_li) }, -- diff mode: Added line |diff.txt|
|
||||
DiffChange { bg = c.water.de(22).li(76).abs_da(diff_bg_li) }, -- diff mode: Changed line |diff.txt|
|
||||
DiffDelete { bg = c.rose.de(32).li(74).abs_da(diff_bg_li) }, -- diff mode: Deleted line |diff.txt|
|
||||
DiffDelete { bg = c.rose.de(37).li(74).abs_da(diff_bg_li) }, -- diff mode: Deleted line |diff.txt|
|
||||
DiffText { bg = c.water.de(24).li(64).abs_da(diff_bg_li), fg = c.stone }, -- diff mode: Changed text within a changed line |diff.txt|
|
||||
|
||||
LineNr { fg = Normal.bg.da(32) }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
|
||||
|
||||
Reference in New Issue
Block a user