summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-03-21 20:06:56 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-03-21 20:06:56 +0100
commit8e17fcee61282cd70e26d19a3e77b7db06667dac (patch)
treea19dd82603d041df66c788115dbc74b2525cf4a0 /lua
parentbc44d4647390245d69b65d481dc777e378a93c49 (diff)
feat(treesitter): update colors for kw
Diffstat (limited to 'lua')
-rw-r--r--lua/no-clown-fiesta/Treesitter.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/no-clown-fiesta/Treesitter.lua b/lua/no-clown-fiesta/Treesitter.lua
index 91cbbba..a841ecb 100644
--- a/lua/no-clown-fiesta/Treesitter.lua
+++ b/lua/no-clown-fiesta/Treesitter.lua
@@ -8,8 +8,8 @@ local Treesitter = {
TSConditional = { fg = C.red },
TSException = { fg = C.red },
TSInclude = { fg = C.gray_blue },
- TSKeyword = { fg = C.red },
- TSKeywordFunction = { fg = C.red },
+ TSKeyword = { fg = C.gray },
+ TSKeywordFunction = { fg = C.blue },
TSLabel = { fg = C.white },
TSNamespace = { fg = C.white },
TSRepeat = { fg = C.red },
@@ -38,7 +38,7 @@ local Treesitter = {
TSTagDelimiter = { fg = C.white },
TSPunctBracket = { fg = C.white },
TSPunctSpecial = { fg = C.medium_gray },
- TSString = { fg = C.light_gray },
+ TSString = { fg = C.medium_gray },
TSStringRegex = { fg = C.medium_gray },
TSStringEscape = { fg = C.medium_gray },
TSTag = { fg = C.pale_purple },