summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta
diff options
context:
space:
mode:
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r--lua/no-clown-fiesta/highlights.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/no-clown-fiesta/highlights.lua b/lua/no-clown-fiesta/highlights.lua
index f435511..5ebbc45 100644
--- a/lua/no-clown-fiesta/highlights.lua
+++ b/lua/no-clown-fiesta/highlights.lua
@@ -68,9 +68,9 @@ function M.highlight(palette, opts)
Boolean = { fg = palette.red },
Float = { fg = palette.red },
Identifier = { fg = palette.white },
- Function = { fg = palette.gray_blue, style = opts.functions },
+ Function = { fg = palette.cyan, style = opts.functions },
Operator = { fg = palette.white },
- Type = { fg = palette.white },
+ Type = { fg = palette.white, style = opts.type },
StorageClass = { fg = palette.gray_blue },
Structure = { fg = palette.gray_blue },
Typedef = { fg = palette.white },
@@ -89,7 +89,7 @@ function M.highlight(palette, opts)
SpecialChar = { fg = palette.medium_gray_blue },
Tag = { fg = palette.pale_purple },
Debug = { fg = palette.red },
- Delimiter = { fg = palette.gray },
+ Delimiter = { fg = palette.white },
SpecialComment = { fg = palette.medium_gray, style = opts.comments },
Underlined = { style = "underline" },
Bold = { style = "bold" },