summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta
diff options
context:
space:
mode:
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r--lua/no-clown-fiesta/Treesitter.lua20
1 files changed, 10 insertions, 10 deletions
diff --git a/lua/no-clown-fiesta/Treesitter.lua b/lua/no-clown-fiesta/Treesitter.lua
index 2e6d804..71eb889 100644
--- a/lua/no-clown-fiesta/Treesitter.lua
+++ b/lua/no-clown-fiesta/Treesitter.lua
@@ -1,5 +1,5 @@
local Treesitter = {
- TSComment = { fg = C.gray },
+ TSComment = { fg = C.medium_gray },
TSAnnotation = { fg = C.white },
TSAttribute = { fg = C.white },
TSConstructor = { fg = C.white },
@@ -32,24 +32,24 @@ local Treesitter = {
TSField = { fg = C.white },
TSParameter = { fg = C.white },
TSParameterReference = { fg = C.white },
- TSSymbol = { fg = C.gray },
+ TSSymbol = { fg = C.medium_gray },
TSText = { fg = C.fg },
TSPunctDelimiter = { fg = C.white },
TSTagDelimiter = { fg = C.white },
TSPunctBracket = { fg = C.white },
- TSPunctSpecial = { fg = C.gray },
- TSString = { fg = C.gray },
- TSStringRegex = { fg = C.gray },
- TSStringEscape = { fg = C.gray },
+ TSPunctSpecial = { fg = C.medium_gray },
+ TSString = { fg = C.medium_gray },
+ TSStringRegex = { fg = C.medium_gray },
+ TSStringEscape = { fg = C.medium_gray },
TSTag = { fg = C.pale_purple },
TSEmphasis = { style = "italic" },
TSUnderline = { style = "underline" },
- TSTitle = { fg = C.gray },
- TSLiteral = { fg = C.gray },
+ TSTitle = { fg = C.medium_gray },
+ TSLiteral = { fg = C.medium_gray },
TSURI = { fg = C.cyan, style = "underline" },
- TSKeywordOperator = { fg = C.gray },
+ TSKeywordOperator = { fg = C.medium_gray },
TSStructure = { fg = C.purple_test },
- TSStrong = { fg = C.gray },
+ TSStrong = { fg = C.medium_gray },
TSQueryLinterError = { fg = C.warning_orange },
}