diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-23 01:00:30 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-23 01:00:30 +0200 |
commit | f4b35fe4cc10d92c00daf72b51e0fc5ed54b4b9d (patch) | |
tree | a494b2b8258fbf4c4e063908a77771d17feadb58 /lua/no-clown-fiesta | |
parent | 416b5b4c3d50113e1fcc851f11b587cd9555dc69 (diff) |
Updatecolors
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 4b6f7bf..72f414b 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.gray_blue }, + ["@conditional"] = { fg = palette.red }, ["@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.white }, ["@namespace"] = { fg = palette.white }, - ["@repeat"] = { fg = palette.gray_blue }, + ["@repeat"] = { fg = palette.red }, ["@constant"] = { fg = palette.white }, ["@const.builtin"] = { fg = palette.red }, ["@float"] = { fg = palette.red }, @@ -50,7 +50,7 @@ function M.highlight(palette, opts) ["@title"] = { fg = palette.medium_gray }, ["@literal"] = { fg = palette.medium_gray }, ["@uri"] = { fg = palette.red, style = "underline" }, - ["@keyword.operator"] = { fg = palette.red }, + ["@keyword.operator"] = { fg = palette.gray_blue }, ["@structure"] = { fg = palette.purple_test }, ["@strong"] = { fg = palette.medium_gray }, ["@query.linter.error"] = { fg = palette.warning_orange }, |