diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-22 23:20:02 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-22 23:20:02 +0200 |
commit | d968ff8418d3dc0fbce3e87e90856657363f65b5 (patch) | |
tree | 81673a8699adff638e0144371a5289b39d218c50 /lua/no-clown-fiesta/highlight-group/treesitter.lua | |
parent | 980694e57f353cdfb2a4a1d0289a0745da10549b (diff) |
Updates
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group/treesitter.lua')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/treesitter.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/treesitter.lua b/lua/no-clown-fiesta/highlight-group/treesitter.lua index 6eb991a..eade346 100644 --- a/lua/no-clown-fiesta/highlight-group/treesitter.lua +++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua @@ -11,9 +11,9 @@ function M.highlight(palette, opts) ["@conditional"] = { fg = palette.red }, ["@exception"] = { fg = palette.red }, ["@include"] = { fg = palette.red }, - ["@keyword"] = { fg = palette.cyan, style = opts.keywords }, - ["@keyword.function"] = { fg = palette.cyan, style = opts.keywords }, - ["@label"] = { fg = palette.white }, + ["@keyword"] = { fg = palette.gray_blue, style = opts.keywords }, + ["@keyword.function"] = { fg = palette.gray_blue, style = opts.keywords }, + ["@label"] = { fg = palette.red }, ["@namespace"] = { fg = palette.white }, ["@repeat"] = { fg = palette.red }, ["@constant"] = { fg = palette.white }, @@ -24,7 +24,7 @@ function M.highlight(palette, opts) ["@character"] = { fg = palette.light_green }, ["@error"] = { fg = palette.error_red }, ["@function"] = { fg = palette.cyan, style = opts.functions }, - ["@function.builtin"] = { fg = palette.cyan }, + ["@function.builtin"] = { fg = palette.red }, ["@method"] = { fg = palette.cyan }, ["@const.macro"] = { fg = palette.cyan }, ["@function.macro"] = { fg = palette.cyan }, @@ -49,7 +49,7 @@ function M.highlight(palette, opts) ["@underline"] = { style = "underline" }, ["@title"] = { fg = palette.medium_gray }, ["@literal"] = { fg = palette.medium_gray }, - ["@uri"] = { fg = palette.cyan, style = "underline" }, + ["@uri"] = { fg = palette.red, style = "underline" }, ["@keyword.operator"] = { fg = palette.red }, ["@structure"] = { fg = palette.purple_test }, ["@strong"] = { fg = palette.medium_gray }, |