summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-22 22:20:59 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-22 22:20:59 +0200
commit7f996e5cba7439d56f49bc9a4bd250b3e3fdca0e (patch)
tree8d9729ffa75b94cbd449413eca5a788186620113
parent474378514be0a8ee477261d7b5300eabab869af2 (diff)
Set operator and property to gray blue
-rw-r--r--lua/no-clown-fiesta/highlight-group/treesitter.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/treesitter.lua b/lua/no-clown-fiesta/highlight-group/treesitter.lua
index 54fdfb6..4384423 100644
--- a/lua/no-clown-fiesta/highlight-group/treesitter.lua
+++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua
@@ -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.white },
- ["@operator"] = { fg = palette.white },
+ ["@property"] = { fg = palette.gray_blue },
+ ["@operator"] = { fg = palette.gray_blue },
["@field"] = { fg = palette.white },
["@parameter"] = { fg = palette.white },
["@parameter.reference"] = { fg = palette.white },