summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/no-clown-fiesta/highlight-group/treesitter.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/treesitter.lua b/lua/no-clown-fiesta/highlight-group/treesitter.lua
index d264ca1..63cd28a 100644
--- a/lua/no-clown-fiesta/highlight-group/treesitter.lua
+++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua
@@ -13,7 +13,7 @@ function M.highlight(palette, opts)
["@include"] = { fg = palette.red },
["@keyword"] = { fg = palette.gray_blue, style = opts.keywords },
["@keyword.function"] = { fg = palette.gray_blue, style = opts.keywords },
- ["@label"] = { fg = palette.white },
+ ["@label"] = { fg = palette.gray_blue },
["@namespace"] = { fg = palette.white },
["@repeat"] = { fg = palette.gray_blue },
["@constant"] = { fg = palette.white },
@@ -30,8 +30,8 @@ function M.highlight(palette, opts)
["@function.macro"] = { fg = palette.cyan },
["@variable"] = { fg = palette.white, style = opts.variables },
["@variable.builtin"] = { fg = palette.white },
- ["@property"] = { fg = palette.gray_blue },
- ["@operator"] = { fg = palette.red },
+ ["@property"] = { fg = palette.white },
+ ["@operator"] = { fg = palette.white },
["@field"] = { fg = palette.white },
["@parameter"] = { fg = palette.white },
["@parameter.reference"] = { fg = palette.white },