diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-18 22:37:52 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-18 22:37:52 +0100 |
commit | 9d44fa1d9cd7ec0ee4d4c13344386d33e61677ad (patch) | |
tree | 9195cabec3e2d3125c3eca35bf895d8a0b88980f /lua/no-clown-fiesta/Treesitter.lua | |
parent | 0916ca40efc0245b15415a42141c367557308432 (diff) |
Update colors in treesitter
Diffstat (limited to 'lua/no-clown-fiesta/Treesitter.lua')
-rw-r--r-- | lua/no-clown-fiesta/Treesitter.lua | 20 |
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 }, } |