diff --git a/lua/ui/integrations/cmp.lua b/lua/ui/integrations/cmp.lua index 9a582e1..5c1c981 100644 --- a/lua/ui/integrations/cmp.lua +++ b/lua/ui/integrations/cmp.lua @@ -1,27 +1,15 @@ local theme = require("ui.kdark").colors return { - CmpItemKindConstant = { fg = theme.bright_red }, - CmpItemKindFunction = { fg = theme.bright_magenta }, - CmpItemKindIdentifier = { fg = theme.bright_black }, - CmpItemKindField = { fg = theme.bright_black }, - CmpItemKindVariable = { fg = theme.bright_cyan }, - Special = { fg = theme.bright_blue }, - CmpItemKindSnippet = { fg = theme.red }, - CmpItemKindText = { fg = theme.bright_yellow }, - CmpItemKindStructure = { fg = theme.bright_cyan }, - CmpItemKindType = { fg = theme.bright_green }, - CmpItemKindKeyword = { fg = theme.white }, - CmpItemKindMethod = { fg = theme.bright_magenta }, - CmpItemKindConstructor = { fg = theme.blue }, - CmpItemKindFolder = { fg = theme.white }, - CmpItemKindModule = { fg = theme.bright_green }, - CmpItemKindProperty = { fg = theme.bright_black }, - CmpItemKindUnit = { fg = theme.bright_cyan }, - CmpItemKindFile = { fg = theme.white }, - CmpItemKindColor = { fg = theme.red }, - CmpItemKindReference = { fg = theme.magenta }, - CmpItemKindStruct = { fg = theme.bright_cyan }, - CmpItemKindOperator = { fg = theme.magenta }, - CmpItemKindTypeParameter = { fg = theme.bright_black }, + CmpItemAbbr = { fg = theme.bright_black }, + CmpItemAbbrMatch = { fg = theme.white, bold = true }, + CmpItemAbbrDeprecated = { fg = theme.bright_black, strikethrough = true }, + CmpItemAbbrMatchFuzzy = { fg = theme.white, bold = true }, + CmpItemKind = { fg = theme.magenta }, + CmpItemKindClass = { fg = theme.yellow }, + CmpItemKindFunction = { fg = theme.magenta }, + CmpItemKindInterface = { fg = theme.yellow }, + CmpItemKindMethod = { fg = theme.magenta }, + CmpItemKindSnippet = { fg = theme.magenta }, + CmpItemKindVariable = { fg = theme.cyan }, } diff --git a/lua/ui/integrations/nvim.lua b/lua/ui/integrations/nvim.lua index fe1fb34..9de2c96 100644 --- a/lua/ui/integrations/nvim.lua +++ b/lua/ui/integrations/nvim.lua @@ -26,7 +26,7 @@ return { -- Pmenu i.e completion menu Pmenu = { bg = theme.black }, PmenuSbar = { bg = theme.black }, - PmenuSel = { bg = theme.black, fg = theme.white }, + PmenuSel = { bg = '#26233a', fg = theme.white }, PmenuThumb = { bg = theme.bright_black }, -- nvim cmp diff --git a/lua/ui/integrations/syntax.lua b/lua/ui/integrations/syntax.lua index 105b2d6..7622f06 100644 --- a/lua/ui/integrations/syntax.lua +++ b/lua/ui/integrations/syntax.lua @@ -14,7 +14,7 @@ return { }, Constant = { - fg = theme.magenta, + fg = theme.white, }, Define = { @@ -23,7 +23,7 @@ return { }, Delimiter = { - fg = theme.orange, + fg = theme.cyan, }, Float = { @@ -35,7 +35,7 @@ return { }, Identifier = { - fg = theme.magenta, + fg = theme.white, sp = "none", }, @@ -85,11 +85,11 @@ return { }, String = { - fg = theme.bright_green, + fg = theme.yellow, }, Structure = { - fg = theme.magenta, + fg = '#37908d', }, Tag = {