diff options
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group')
-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 45339af..2d2ec52 100644 --- a/lua/no-clown-fiesta/highlight-group/treesitter.lua +++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua @@ -11,8 +11,8 @@ function M.highlight(palette, opts) ["@conditional"] = { fg = palette.red }, ["@exception"] = { fg = palette.red }, ["@include"] = { fg = palette.red }, - ["@keyword"] = { fg = palette.red, style = opts.keywords }, - ["@keyword.function"] = { fg = palette.red, style = opts.keywords }, + ["@keyword"] = { fg = palette.cyan, style = opts.keywords }, + ["@keyword.function"] = { fg = palette.cyan, style = opts.keywords }, ["@label"] = { fg = palette.red }, ["@namespace"] = { fg = palette.white }, ["@repeat"] = { fg = palette.red }, @@ -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.cyan, style = opts.functions }, - ["@function.builtin"] = { fg = palette.cyan }, - ["@method"] = { fg = palette.cyan }, + ["@function"] = { fg = palette.gray_blue, style = opts.functions }, + ["@function.builtin"] = { fg = palette.gray_blue }, + ["@method"] = { fg = palette.gray_blue }, ["@const.macro"] = { fg = palette.cyan }, ["@function.macro"] = { fg = palette.cyan }, ["@variable"] = { fg = palette.white, style = opts.variables }, |