113 lines
1.5 KiB
Lua
113 lines
1.5 KiB
Lua
local theme = require("ui.kdark").colors
|
|
|
|
return {
|
|
Boolean = {
|
|
fg = theme.orange,
|
|
},
|
|
|
|
Character = {
|
|
fg = theme.magenta,
|
|
},
|
|
|
|
Conditional = {
|
|
fg = theme.magenta,
|
|
},
|
|
|
|
Constant = {
|
|
fg = theme.magenta,
|
|
},
|
|
|
|
Define = {
|
|
fg = theme.magenta,
|
|
sp = "none",
|
|
},
|
|
|
|
Delimiter = {
|
|
fg = theme.orange,
|
|
},
|
|
|
|
Float = {
|
|
fg = theme.yellow,
|
|
},
|
|
|
|
Function = {
|
|
fg = theme.bright_blue,
|
|
},
|
|
|
|
Identifier = {
|
|
fg = theme.magenta,
|
|
sp = "none",
|
|
},
|
|
|
|
Include = {
|
|
fg = theme.bright_blue,
|
|
},
|
|
|
|
Keyword = {
|
|
fg = theme.magenta,
|
|
},
|
|
|
|
Label = {
|
|
fg = theme.yellow,
|
|
},
|
|
|
|
Number = {
|
|
fg = theme.yellow,
|
|
},
|
|
|
|
Operator = {
|
|
fg = theme.gray,
|
|
sp = "none",
|
|
},
|
|
|
|
PreProc = {
|
|
fg = theme.yellow,
|
|
},
|
|
|
|
Repeat = {
|
|
fg = theme.yellow,
|
|
},
|
|
|
|
Special = {
|
|
fg = theme.bright_blue,
|
|
},
|
|
|
|
SpecialChar = {
|
|
fg = theme.orange,
|
|
},
|
|
|
|
Statement = {
|
|
fg = theme.magenta,
|
|
},
|
|
|
|
StorageClass = {
|
|
fg = theme.yellow,
|
|
},
|
|
|
|
String = {
|
|
fg = theme.bright_green,
|
|
},
|
|
|
|
Structure = {
|
|
fg = theme.magenta,
|
|
},
|
|
|
|
Tag = {
|
|
fg = theme.yellow,
|
|
},
|
|
|
|
Todo = {
|
|
fg = theme.yellow,
|
|
bg = theme.bright_black,
|
|
},
|
|
|
|
Type = {
|
|
fg = theme.yellow,
|
|
sp = "none",
|
|
},
|
|
|
|
Typedef = {
|
|
fg = theme.yellow,
|
|
},
|
|
}
|