some shitty coloscheme changes
This commit is contained in:
parent
aba35258a4
commit
49546d07d3
|
|
@ -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 },
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
Reference in New Issue