summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-23 00:34:58 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-23 00:34:58 +0200
commitad87f55e30effe557dba218beb5134f8b3a502fa (patch)
tree2f7992840323cbdc35a338de05bed771fdbe6d08
parentc907e15fa424b238852e432d8a7be7caae00353b (diff)
Update
-rw-r--r--lua/no-clown-fiesta/highlight-group/treesitter.lua10
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 2d2ec52..c5b1142 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.cyan, style = opts.keywords },
- ["@keyword.function"] = { fg = palette.cyan, style = opts.keywords },
+ ["@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 },
@@ -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.gray_blue, style = opts.functions },
- ["@function.builtin"] = { fg = palette.gray_blue },
- ["@method"] = { fg = palette.gray_blue },
+ ["@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 },