diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-23 00:13:06 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-23 00:13:06 +0200 |
commit | c907e15fa424b238852e432d8a7be7caae00353b (patch) | |
tree | ee35b81d7d109baeacc9df3a5a7e310ada1a4c07 /lua/no-clown-fiesta | |
parent | f8729bd4c35cb9eee74c2cdb6540bf02156c0310 (diff) |
Set fn gray blue
Diffstat (limited to 'lua/no-clown-fiesta')
-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 }, |