diff options
Diffstat (limited to 'lua')
-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 }, |