From 2ba03736ab21a530fae6ddce018eec7d1482709a Mon Sep 17 00:00:00 2001 From: zootedb0t <05kraken@proton.me> Date: Tue, 28 Nov 2023 18:40:11 +0530 Subject: [PATCH] update FloatBorder and Cmp highlight --- lua/citruszest/highlights/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/citruszest/highlights/init.lua b/lua/citruszest/highlights/init.lua index 2f30b6d..e9e9aec 100644 --- a/lua/citruszest/highlights/init.lua +++ b/lua/citruszest/highlights/init.lua @@ -32,7 +32,7 @@ M.theme = function(C, O) NormalNC = { fg = C.foreground, bg = C.background }, -- normal text in non-current windows NormalSB = { fg = C.foreground }, -- normal text in non-current windows NormalFloat = { bg = C.background }, -- Normal text in floating windows. - FloatBorder = { fg = C.bright_orange }, + FloatBorder = { fg = C.lemon_yellow }, FloatTitle = { fg = C.yellow }, -- Title of floating windows Pmenu = { fg = C.bright_white, bg = C.background }, -- Popup menu: normal item. PmenuSel = { fg = C.orange, bg = C.cursor, bold = O.bold }, -- Popup menu: selected item. @@ -410,7 +410,7 @@ M.theme = function(C, O) -- kind colors CmpItemKindSnippet = { fg = C.turquoise_blue }, CmpItemKindKeyword = { fg = C.orange }, - CmpItemKindText = { fg = C.blue }, + CmpItemKindText = { fg = C.lemon_yellow }, CmpItemKindMethod = { fg = C.turquoise_medium }, CmpItemKindConstructor = { fg = C.turquoise_medium }, CmpItemKindFunction = { fg = C.bright_yellow },