From d871ba3755cbc8998877b2e3c5412b71b2d01f56 Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 15 Aug 2023 01:02:28 +0200 Subject: [PATCH] changed gutter background --- lua/tccs/colors.lua | 8 ++++---- lua/tccs/theme.lua | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lua/tccs/colors.lua b/lua/tccs/colors.lua index 2b040e8..ebc7bf6 100644 --- a/lua/tccs/colors.lua +++ b/lua/tccs/colors.lua @@ -6,7 +6,7 @@ colors.get_colors = function() -- common accent = "#C586C0", bg = "#191919", - bg_alt = "#121212", + -- bg_alt = "#121212", fg = "#D4D4D4", ui = "#4D5566", -- syntax @@ -31,11 +31,11 @@ colors.get_colors = function() panel_bg = "#0D1016", panel_shadow = "#00010A", panel_border = "#000000", - gutter_normal = "#323945", - gutter_active = "#464D5E", + -- gutter_normal = "#323945", + -- gutter_active = "#464D5E", selection_bg = "#273747", selection_inactive = "#272727", - selection_border = "#304357", + -- selection_border = "#304357", guide_active = "#393F4D", guide_normal = "#242A35", -- vcs diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index 6b55400..2e9a26a 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -92,10 +92,10 @@ theme.set_highlights = function(opts) hl(0, 'netrwClassify', { fg = c.special }) -- gitgutter - hl(0, 'GitGutterAdd', { fg = c.vcs_added, bg = c.panel_bg }) - hl(0, 'GitGutterChange', { fg = c.vcs_modified, bg = c.panel_bg }) - hl(0, 'GitGutterDelete', { fg = c.vcs_removed, bg = c.panel_bg }) - hl(0, 'GitGutterChangeDelete', { fg = c.vcs_modified, bg = c.panel_bg, underline = true }) + hl(0, 'GitGutterAdd', { fg = c.vcs_added, bg = c.bg }) + hl(0, 'GitGutterChange', { fg = c.vcs_modified, bg = c.bg }) + hl(0, 'GitGutterDelete', { fg = c.vcs_removed, bg = c.bg }) + hl(0, 'GitGutterChangeDelete', { fg = c.vcs_modified, bg = c.bg, underline = true }) -- signify hl(0, 'SignifySignAdd', { fg = c.vcs_added, bg = c.panel_bg })