This repository has been archived on 2026-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
nvim/lua/ui/integrations/syntax.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.white,
},
Define = {
fg = theme.magenta,
sp = "none",
},
Delimiter = {
fg = theme.cyan,
},
Float = {
fg = theme.yellow,
},
Function = {
fg = theme.bright_blue,
},
Identifier = {
fg = theme.white,
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.yellow,
},
Structure = {
fg = '#37908d',
},
Tag = {
fg = theme.yellow,
},
Todo = {
fg = theme.yellow,
bg = theme.bright_black,
},
Type = {
fg = theme.yellow,
sp = "none",
},
Typedef = {
fg = theme.yellow,
},
}