some shitty coloscheme changes
This commit is contained in:
parent
aba35258a4
commit
49546d07d3
|
|
@ -1,27 +1,15 @@
|
||||||
local theme = require("ui.kdark").colors
|
local theme = require("ui.kdark").colors
|
||||||
|
|
||||||
return {
|
return {
|
||||||
CmpItemKindConstant = { fg = theme.bright_red },
|
CmpItemAbbr = { fg = theme.bright_black },
|
||||||
CmpItemKindFunction = { fg = theme.bright_magenta },
|
CmpItemAbbrMatch = { fg = theme.white, bold = true },
|
||||||
CmpItemKindIdentifier = { fg = theme.bright_black },
|
CmpItemAbbrDeprecated = { fg = theme.bright_black, strikethrough = true },
|
||||||
CmpItemKindField = { fg = theme.bright_black },
|
CmpItemAbbrMatchFuzzy = { fg = theme.white, bold = true },
|
||||||
CmpItemKindVariable = { fg = theme.bright_cyan },
|
CmpItemKind = { fg = theme.magenta },
|
||||||
Special = { fg = theme.bright_blue },
|
CmpItemKindClass = { fg = theme.yellow },
|
||||||
CmpItemKindSnippet = { fg = theme.red },
|
CmpItemKindFunction = { fg = theme.magenta },
|
||||||
CmpItemKindText = { fg = theme.bright_yellow },
|
CmpItemKindInterface = { fg = theme.yellow },
|
||||||
CmpItemKindStructure = { fg = theme.bright_cyan },
|
CmpItemKindMethod = { fg = theme.magenta },
|
||||||
CmpItemKindType = { fg = theme.bright_green },
|
CmpItemKindSnippet = { fg = theme.magenta },
|
||||||
CmpItemKindKeyword = { fg = theme.white },
|
CmpItemKindVariable = { fg = theme.cyan },
|
||||||
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 },
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ return {
|
||||||
-- Pmenu i.e completion menu
|
-- Pmenu i.e completion menu
|
||||||
Pmenu = { bg = theme.black },
|
Pmenu = { bg = theme.black },
|
||||||
PmenuSbar = { 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 },
|
PmenuThumb = { bg = theme.bright_black },
|
||||||
|
|
||||||
-- nvim cmp
|
-- nvim cmp
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
Constant = {
|
Constant = {
|
||||||
fg = theme.magenta,
|
fg = theme.white,
|
||||||
},
|
},
|
||||||
|
|
||||||
Define = {
|
Define = {
|
||||||
|
|
@ -23,7 +23,7 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
Delimiter = {
|
Delimiter = {
|
||||||
fg = theme.orange,
|
fg = theme.cyan,
|
||||||
},
|
},
|
||||||
|
|
||||||
Float = {
|
Float = {
|
||||||
|
|
@ -35,7 +35,7 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
Identifier = {
|
Identifier = {
|
||||||
fg = theme.magenta,
|
fg = theme.white,
|
||||||
sp = "none",
|
sp = "none",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -85,11 +85,11 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
String = {
|
String = {
|
||||||
fg = theme.bright_green,
|
fg = theme.yellow,
|
||||||
},
|
},
|
||||||
|
|
||||||
Structure = {
|
Structure = {
|
||||||
fg = theme.magenta,
|
fg = '#37908d',
|
||||||
},
|
},
|
||||||
|
|
||||||
Tag = {
|
Tag = {
|
||||||
|
|
|
||||||
Reference in New Issue