From bcbbcbe5d445898acd5729942e86a077dd541c1d Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 15 Aug 2023 00:53:54 +0200 Subject: [PATCH] added cterm colors for pmenu --- lua/tccs/theme.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index f269784..6b55400 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -28,8 +28,8 @@ theme.set_highlights = function(opts) hl(0, 'MoreMsg', { fg = c.string }) hl(0, 'NonText', { fg = c.guide_normal }) - hl(0, 'Pmenu', { fg = c.fg, bg = c.selection_inactive, ctermfg = 188, ctermbg = 16 }) - hl(0, 'PmenuSel', { fg = c.selection_bg, bg = c.fg, ctermfg = 16, ctermbg = 188 }) + 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, 'FloatBorder', { fg = c.fg, bg = c.selection_inactive }) hl(0, 'Question', { fg = c.string })