From 4dc4a895524b66f599c200986580843b37307b8b Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Wed, 19 Mar 2025 20:57:40 +0100 Subject: [PATCH] Make colors in `nvim-cmp` pop-up more subtle --- lua/gruvbox.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lua/gruvbox.lua b/lua/gruvbox.lua index ae2c20f..2c9464c 100644 --- a/lua/gruvbox.lua +++ b/lua/gruvbox.lua @@ -685,19 +685,19 @@ M.highlights = function() CmpItemAbbrMatch = { fg = C.fg0 }, CmpItemAbbrMatchFuzzy = { link = 'CmpItemAbbrMatch' }, - CmpItemAbbrDeprecated = { fg = C.orange, strikethrough = true }, + CmpItemAbbrDeprecated = { fg = C.dim_orange, strikethrough = true }, - CmpItemKind = { fg = C.purple }, + CmpItemKind = { fg = C.dim_purple }, CmpItemMenu = { fg = C.bg2, italic = true }, - CmpItemKindVariable = { fg = C.aqua }, + CmpItemKindVariable = { fg = C.dim_aqua }, CmpItemKindInterface = { link = 'CmpItemKindVariable' }, CmpItemKindText = { link = 'CmpItemKindVariable' }, - CmpItemKindFunction = { fg = C.blue }, + CmpItemKindFunction = { fg = C.dim_blue }, CmpItemKindMethod = { link = 'CmpItemKindFunction' }, - CmpItemKindKeyword = { fg = C.green }, + CmpItemKindKeyword = { fg = C.dim_green }, CmpItemKindProperty = { link = 'CmpItemKindKeyword' }, CmpItemKindUnit = { link = 'CmpItemKindKeyword' },