From fdf17ce3ddd0ea637be86450347d9988d74e6a65 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Fri, 10 Sep 2021 18:04:43 +0800 Subject: [PATCH] slightly adjust DiffDelete saturation --- autoload/lightline/colorscheme/zenbones.vim | 2 +- colors/zenbones.vim | 3 +-- lua/lualine/themes/zenbones.lua | 2 +- lua/zenbones/init.lua | 3 +-- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/autoload/lightline/colorscheme/zenbones.vim b/autoload/lightline/colorscheme/zenbones.vim index 17be7e5..53cb6de 100644 --- a/autoload/lightline/colorscheme/zenbones.vim +++ b/autoload/lightline/colorscheme/zenbones.vim @@ -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" ] ] diff --git a/colors/zenbones.vim b/colors/zenbones.vim index 680f2a3..8ff2985 100644 --- a/colors/zenbones.vim +++ b/colors/zenbones.vim @@ -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 diff --git a/lua/lualine/themes/zenbones.lua b/lua/lualine/themes/zenbones.lua index 74cdbc6..ddbbb51 100644 --- a/lua/lualine/themes/zenbones.lua +++ b/lua/lualine/themes/zenbones.lua @@ -22,7 +22,7 @@ return { }, replace = { - a = { bg = "#E9CACE", fg = common_fg, gui = "bold" }, + a = { bg = "#E7CBCE", fg = common_fg, gui = "bold" }, }, inactive = { diff --git a/lua/zenbones/init.lua b/lua/zenbones/init.lua index a7e833d..9a1a974 100644 --- a/lua/zenbones/init.lua +++ b/lua/zenbones/init.lua @@ -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.