summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/Treesitter.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-03-23 20:49:34 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-03-23 20:49:34 +0100
commitbb2b2da402417341c0fc7f76a4611de2a102fdc3 (patch)
tree2ea8bd2583c68e84d8eb679ed90c1a1abc30c151 /lua/no-clown-fiesta/Treesitter.lua
parentcbb29d6d6672dc674e9df96db3d7566eafda72df (diff)
feat(palette): change to cyan for funs
Diffstat (limited to 'lua/no-clown-fiesta/Treesitter.lua')
-rw-r--r--lua/no-clown-fiesta/Treesitter.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/no-clown-fiesta/Treesitter.lua b/lua/no-clown-fiesta/Treesitter.lua
index 0fd2450..3be3ea1 100644
--- a/lua/no-clown-fiesta/Treesitter.lua
+++ b/lua/no-clown-fiesta/Treesitter.lua
@@ -7,7 +7,7 @@ local Treesitter = {
TSTypeBuiltin = { fg = C.white },
TSConditional = { fg = C.gray_blue },
TSException = { fg = C.red },
- TSInclude = { fg = C.gray_blue },
+ TSInclude = { fg = C.red },
TSKeyword = { fg = C.gray_blue },
TSKeywordFunction = { fg = C.gray_blue },
TSLabel = { fg = C.white },
@@ -20,11 +20,11 @@ local Treesitter = {
TSBoolean = { fg = C.blue },
TSCharacter = { fg = C.light_green },
TSError = { fg = C.error_red },
- TSFunction = { fg = C.gray_blue },
- TSFuncBuiltin = { fg = C.white },
- TSMethod = { fg = C.white },
- TSConstMacro = { fg = C.white },
- TSFuncMacro = { fg = C.white },
+ TSFunction = { fg = C.cyan },
+ TSFuncBuiltin = { fg = C.cyan },
+ TSMethod = { fg = C.cyan },
+ TSConstMacro = { fg = C.cyan },
+ TSFuncMacro = { fg = C.cyan },
TSVariable = { fg = C.white },
TSVariableBuiltin = { fg = C.white },
TSProperty = { fg = C.white },