summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-22 22:37:54 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-22 22:37:54 +0200
commitf9c9a4330ebd0258b1aefb99c83bb5bef8298d50 (patch)
tree3b14c4c0d081859795fa1baf009f70e1051135d1
parentf0c716f9333ddcb5a4e89b31e58e3af4595c2320 (diff)
Update colors
-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 },