diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-22 23:37:22 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-22 23:37:22 +0200 |
commit | 62ddaf6d7001cd91494c64eb997cbbc3604ec82f (patch) | |
tree | 84026d5fcb716f594f6f552b0e08b6a7d12e73da /lua/no-clown-fiesta/highlight-group | |
parent | 7f996e5cba7439d56f49bc9a4bd250b3e3fdca0e (diff) |
Revert "Set operator and property to gray blue"
This reverts commit 7f996e5cba7439d56f49bc9a4bd250b3e3fdca0e.
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/treesitter.lua | 4 |
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 4384423..54fdfb6 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.gray_blue }, - ["@operator"] = { fg = palette.gray_blue }, + ["@property"] = { fg = palette.white }, + ["@operator"] = { fg = palette.white }, ["@field"] = { fg = palette.white }, ["@parameter"] = { fg = palette.white }, ["@parameter.reference"] = { fg = palette.white }, |