diff options
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/treesitter.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/treesitter.lua b/lua/no-clown-fiesta/highlight-group/treesitter.lua index 4542805..6eb991a 100644 --- a/lua/no-clown-fiesta/highlight-group/treesitter.lua +++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua @@ -23,9 +23,9 @@ function M.highlight(palette, opts) ["@boolean"] = { fg = palette.red }, ["@character"] = { fg = palette.light_green }, ["@error"] = { fg = palette.error_red }, - ["@function"] = { fg = palette.white, style = opts.functions }, - ["@function.builtin"] = { fg = palette.white }, - ["@method"] = { fg = palette.white }, + ["@function"] = { fg = palette.cyan, style = opts.functions }, + ["@function.builtin"] = { fg = palette.cyan }, + ["@method"] = { fg = palette.cyan }, ["@const.macro"] = { fg = palette.cyan }, ["@function.macro"] = { fg = palette.cyan }, ["@variable"] = { fg = palette.white, style = opts.variables }, @@ -50,7 +50,7 @@ function M.highlight(palette, opts) ["@title"] = { fg = palette.medium_gray }, ["@literal"] = { fg = palette.medium_gray }, ["@uri"] = { fg = palette.cyan, style = "underline" }, - ["@keyword.operator"] = { fg = palette.gray_blue }, + ["@keyword.operator"] = { fg = palette.red }, ["@structure"] = { fg = palette.purple_test }, ["@strong"] = { fg = palette.medium_gray }, ["@query.linter.error"] = { fg = palette.warning_orange }, |