From 04b3d58d9fe4122d61c5ca09056bda124e6ef2e5 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Thu, 16 Sep 2021 20:04:11 +0800 Subject: [PATCH] breaking: adjust statusline theme colors --- lua/zenbones/build/lightline.lua | 2 +- lua/zenbones/build/lualine.lua | 2 +- lua/zenflesh/init.lua | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lua/zenbones/build/lightline.lua b/lua/zenbones/build/lightline.lua index 686a775..d6b83ac 100644 --- a/lua/zenbones/build/lightline.lua +++ b/lua/zenbones/build/lightline.lua @@ -34,7 +34,7 @@ return function(name, theme, palette, terminal) normal_b_bg = theme.PmenuSel.bg.hex, normal_c_bg = theme.StatusLine.bg.hex, normal_c_fg = theme.StatusLine.fg.hex, - insert_a_bg = theme.DiffAdd.bg.hex, + insert_a_bg = theme.DiffText.bg.hex, visual_a_bg = theme.Visual.bg.hex, replace_a_bg = theme.DiffDelete.bg.hex, tabline_left_bg = theme.PmenuSel.bg.hex, diff --git a/lua/zenbones/build/lualine.lua b/lua/zenbones/build/lualine.lua index d474e20..8a24b63 100644 --- a/lua/zenbones/build/lualine.lua +++ b/lua/zenbones/build/lualine.lua @@ -45,7 +45,7 @@ return function(name, theme, palette, terminal) normal_b_bg = theme.PmenuSel.bg.hex, normal_c_bg = theme.StatusLine.bg.hex, normal_c_fg = theme.StatusLine.fg.hex, - insert_a_bg = theme.DiffAdd.bg.hex, + insert_a_bg = theme.DiffText.bg.hex, command_a_bg = theme.Search.bg.hex, visual_a_bg = theme.Visual.bg.hex, replace_a_bg = theme.DiffDelete.bg.hex, diff --git a/lua/zenflesh/init.lua b/lua/zenflesh/init.lua index 9e7a294..b97e493 100644 --- a/lua/zenflesh/init.lua +++ b/lua/zenflesh/init.lua @@ -64,7 +64,7 @@ local theme = lush(function() LineNr { fg = Normal.bg.li(30) }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set. SignColumn { LineNr }, -- column where |signs| are displayed FoldColumn { LineNr, gui = "bold" }, -- 'foldcolumn' - Folded { bg = Normal.bg.li(16), fg = Normal.bg.li(58) }, -- line used for closed folds + Folded { bg = Normal.bg.li(16), fg = Normal.bg.li(69) }, -- line used for closed folds CursorLineNr { LineNr, fg = p.fg, gui = "bold" }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. -- ModeMsg { }, -- 'showmode' message (e.g., "-- INSERT -- ") @@ -75,8 +75,8 @@ local theme = lush(function() FloatBorder { fg = Normal.bg.li(46) }, -- Normal text in floating windows. Pmenu { bg = Normal.bg.li(12) }, -- Popup menu: normal item. - PmenuSel { bg = Normal.bg.li(18) }, -- Popup menu: selected item. - PmenuSbar { bg = Normal.bg.li(26) }, -- Popup menu: scrollbar. + PmenuSel { bg = Normal.bg.li(24) }, -- Popup menu: selected item. + PmenuSbar { bg = Normal.bg.li(40) }, -- Popup menu: scrollbar. PmenuThumb { bg = Normal.bg.li(50) }, -- Popup menu: Thumb of the scrollbar. Search { bg = p.blossom.de(12).da(32), fg = p.fg }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.