From 6a14537a529bc60a5fe40e4414cd133c17baa01f Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 15 Aug 2023 03:05:19 +0200 Subject: [PATCH] cleanup colors --- lua/tccs/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index c4bd128..b0433db 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -50,10 +50,10 @@ theme.set_highlights = function(opts) hl(0, 'TabLineFill', { fg = c.fg, bg = c.popup }) hl(0, 'TabLineSel', { fg = c.fg, bg = c.bg }) - hl(0, 'Title', { bold = true }) hl(0, 'Visual', { bg = c.popup }) -- syntax + hl(0, 'Title', { fg = c.keyword, bold = true }) hl(0, 'Comment', { fg = c.comment, italic = opts.italic_comments }) hl(0, 'Constant', { fg = c.constant }) hl(0, 'String', { fg = c.string })