summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-22 23:05:05 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-22 23:05:05 +0200
commit34cbc1a8aadb48c2136ba6f8a393e0a5734a3af1 (patch)
tree1195886b2b717d527cbf28a1c63a8a9a886d1584
parent0742ec5e44ed11821a5a6d02f5d8cfad6b3b9c9c (diff)
Replace gray blue w white and cyan
-rw-r--r--lua/no-clown-fiesta/highlight-group/treesitter.lua18
1 files changed, 9 insertions, 9 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/treesitter.lua b/lua/no-clown-fiesta/highlight-group/treesitter.lua
index 473fc69..4542805 100644
--- a/lua/no-clown-fiesta/highlight-group/treesitter.lua
+++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua
@@ -5,17 +5,17 @@ function M.highlight(palette, opts)
["@comment"] = { fg = palette.medium_gray, style = opts.comments },
["@annotation"] = { fg = palette.white },
["@attribute"] = { fg = palette.white },
- ["@constructor"] = { fg = palette.gray_blue },
+ ["@constructor"] = { fg = palette.white },
["@type"] = { fg = palette.white, style = opts.type },
["@type.builtin"] = { fg = palette.white },
- ["@conditional"] = { fg = palette.gray_blue },
+ ["@conditional"] = { fg = palette.red },
["@exception"] = { fg = palette.red },
["@include"] = { fg = palette.red },
- ["@keyword"] = { fg = palette.gray_blue, style = opts.keywords },
- ["@keyword.function"] = { fg = palette.gray_blue, style = opts.keywords },
- ["@label"] = { fg = palette.gray_blue },
+ ["@keyword"] = { fg = palette.cyan, style = opts.keywords },
+ ["@keyword.function"] = { fg = palette.cyan, style = opts.keywords },
+ ["@label"] = { fg = palette.white },
["@namespace"] = { fg = palette.white },
- ["@repeat"] = { fg = palette.gray_blue },
+ ["@repeat"] = { fg = palette.red },
["@constant"] = { fg = palette.white },
["@const.builtin"] = { fg = palette.red },
["@float"] = { fg = palette.red },
@@ -23,9 +23,9 @@ function M.highlight(palette, opts)
["@boolean"] = { fg = palette.red },
["@character"] = { fg = palette.light_green },
["@error"] = { fg = palette.error_red },
- ["@function"] = { fg = palette.cyan, style = opts.functions },
- ["@function.builtin"] = { fg = palette.cyan },
- ["@method"] = { fg = palette.cyan },
+ ["@function"] = { fg = palette.white, style = opts.functions },
+ ["@function.builtin"] = { fg = palette.white },
+ ["@method"] = { fg = palette.white },
["@const.macro"] = { fg = palette.cyan },
["@function.macro"] = { fg = palette.cyan },
["@variable"] = { fg = palette.white, style = opts.variables },