summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/groups
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-02-13 22:47:35 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-02-13 22:47:35 +0100
commit3e4b0088e0ecd494bc258b6f96d320e49d1cda30 (patch)
treee42c6aa5dd34d3ddb61de4db4c4c3780bbbfde39 /lua/no-clown-fiesta/groups
parentdcc69176cfaa3ce16e296f9c5097188669d4ace6 (diff)
Dim reds, remove bloat colors
Diffstat (limited to 'lua/no-clown-fiesta/groups')
-rw-r--r--lua/no-clown-fiesta/groups/highlights.lua4
-rw-r--r--lua/no-clown-fiesta/groups/treesitter.lua4
2 files changed, 4 insertions, 4 deletions
diff --git a/lua/no-clown-fiesta/groups/highlights.lua b/lua/no-clown-fiesta/groups/highlights.lua
index 3bb845c..b0cd74a 100644
--- a/lua/no-clown-fiesta/groups/highlights.lua
+++ b/lua/no-clown-fiesta/groups/highlights.lua
@@ -47,7 +47,7 @@ function M.highlight(palette, options)
PmenuSbar = { bg = palette.alt_bg },
PmenuThumb = { bg = palette.light_gray },
MatchWord = { underline = true },
- MatchParen = { fg = palette.pale_purple, bg = palette.bg, underline = true },
+ MatchParen = { fg = palette.blue, bg = palette.bg, underline = true },
MatchWordCur = { underline = true },
MatchParenCur = { underline = true },
Cursor = { fg = palette.cursor_fg, bg = palette.cursor_bg },
@@ -102,7 +102,7 @@ function M.highlight(palette, options)
PreCondit = { fg = palette.medium_gray },
Special = { fg = palette.white },
SpecialChar = { fg = palette.medium_gray_blue },
- Tag = { fg = palette.pale_purple },
+ Tag = { fg = palette.blue },
Debug = { fg = palette.red },
Delimiter = { fg = palette.white },
SpecialComment = vim.tbl_extend(
diff --git a/lua/no-clown-fiesta/groups/treesitter.lua b/lua/no-clown-fiesta/groups/treesitter.lua
index e41f09e..b7cee4a 100644
--- a/lua/no-clown-fiesta/groups/treesitter.lua
+++ b/lua/no-clown-fiesta/groups/treesitter.lua
@@ -66,14 +66,14 @@ function M.highlight(palette, options)
["@string"] = { fg = palette.medium_gray_blue },
["@string.regex"] = { fg = palette.medium_gray_blue },
["@string.escape"] = { fg = palette.medium_gray_blue },
- ["@tag"] = { fg = palette.pale_purple },
+ ["@tag"] = { fg = palette.blue },
["@emphasis"] = { italic = true },
["@underline"] = { underline = true },
["@title"] = { fg = palette.medium_gray },
["@literal"] = { fg = palette.medium_gray },
["@uri"] = { fg = palette.cyan, underline = true },
["@keyword.operator"] = { fg = palette.gray_blue },
- ["@structure"] = { fg = palette.purple_test },
+ ["@structure"] = { fg = palette.gray_blue },
["@strong"] = { fg = palette.medium_gray },
["@query.linter.error"] = { fg = palette.warning },
}