diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-23 00:38:42 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-23 00:38:42 +0200 |
commit | 416b5b4c3d50113e1fcc851f11b587cd9555dc69 (patch) | |
tree | 023fcf6872b93538eba03db1b725b4016b7c7d6c /lua/no-clown-fiesta | |
parent | ad87f55e30effe557dba218beb5134f8b3a502fa (diff) |
Replace red w blue
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/treesitter.lua | 6 |
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 c5b1142..4b6f7bf 100644 --- a/lua/no-clown-fiesta/highlight-group/treesitter.lua +++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua @@ -8,14 +8,14 @@ function M.highlight(palette, opts) ["@constructor"] = { fg = palette.cyan }, ["@type"] = { fg = palette.white, style = opts.type }, ["@type.builtin"] = { fg = palette.white }, - ["@conditional"] = { fg = palette.red }, + ["@conditional"] = { fg = palette.gray_blue }, ["@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.red }, + ["@label"] = { fg = palette.white }, ["@namespace"] = { fg = palette.white }, - ["@repeat"] = { fg = palette.red }, + ["@repeat"] = { fg = palette.gray_blue }, ["@constant"] = { fg = palette.white }, ["@const.builtin"] = { fg = palette.red }, ["@float"] = { fg = palette.red }, |