From ccbc56db956a9f4f0396c2071558a566d2610882 Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 15 Aug 2023 02:03:02 +0200 Subject: [PATCH] cleanup colors --- lua/tccs/colors.lua | 4 ++-- lua/tccs/theme.lua | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/tccs/colors.lua b/lua/tccs/colors.lua index ebc7bf6..c8f0619 100644 --- a/lua/tccs/colors.lua +++ b/lua/tccs/colors.lua @@ -30,10 +30,10 @@ colors.get_colors = function() line_alt = "#772222", panel_bg = "#0D1016", panel_shadow = "#00010A", - panel_border = "#000000", + -- panel_border = "#000000", -- gutter_normal = "#323945", -- gutter_active = "#464D5E", - selection_bg = "#273747", + -- selection_bg = "#273747", selection_inactive = "#272727", -- selection_border = "#304357", guide_active = "#393F4D", diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index a2f1735..7b0b8a8 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -29,7 +29,7 @@ theme.set_highlights = function(opts) hl(0, 'NonText', { fg = c.guide_normal }) hl(0, 'Pmenu', { fg = c.fg, bg = c.selection_inactive, ctermfg = 188, ctermbg = 235 }) - hl(0, 'PmenuSel', { fg = c.selection_bg, bg = c.fg, ctermfg = 235, ctermbg = 188 }) + hl(0, 'PmenuSel', { fg = c.selection_inactive, bg = c.fg, ctermfg = 235, ctermbg = 188 }) hl(0, 'FloatBorder', { fg = c.fg, bg = c.selection_inactive }) hl(0, 'Question', { fg = c.string }) @@ -47,7 +47,7 @@ theme.set_highlights = function(opts) hl(0, 'WildMenu', { fg = c.fg, bg = c.markup }) -- TODO: fix color hl(0, 'TabLine', { fg = c.comment, bg = c.panel_shadow }) - hl(0, 'TabLineFill', { fg = c.fg, bg = c.panel_border }) + hl(0, 'TabLineFill', { fg = c.fg, bg = c.selection_inactive }) hl(0, 'TabLineSel', { fg = c.fg, bg = c.bg }) hl(0, 'Title', { fg = c.keyword, bold = true })