summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/groups/highlights.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2025-09-27 01:29:24 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2025-09-27 01:29:24 +0200
commita70eef2af24f804cc017bb1b03ee238b033bffae (patch)
treed05b1e9b526dc75242426ee079ae322df72b348d /lua/no-clown-fiesta/groups/highlights.lua
parent2f57d1115e246b62a1a81bba806fe79aaa53b610 (diff)
Add themes
Diffstat (limited to 'lua/no-clown-fiesta/groups/highlights.lua')
-rw-r--r--lua/no-clown-fiesta/groups/highlights.lua26
1 files changed, 13 insertions, 13 deletions
diff --git a/lua/no-clown-fiesta/groups/highlights.lua b/lua/no-clown-fiesta/groups/highlights.lua
index eab09cb..a0a4c7f 100644
--- a/lua/no-clown-fiesta/groups/highlights.lua
+++ b/lua/no-clown-fiesta/groups/highlights.lua
@@ -36,7 +36,7 @@ function M.highlight(palette, opts)
),
Folded = { fg = palette.light_gray, bg = palette.alt_bg },
FoldColumn = { fg = palette.light_gray, bg = palette.alt_bg },
- LineNr = { fg = palette.gray },
+ LineNr = { fg = palette.medium_gray },
Whitespace = { fg = palette.gray },
VertSplit = { fg = palette.bg, bg = palette.accent },
CursorLine = {
@@ -95,36 +95,36 @@ function M.highlight(palette, opts)
Question = { fg = palette.cyan },
EndOfBuffer = { fg = palette.gray },
NonText = { fg = palette.fg },
- Variable = vim.tbl_extend("force", { fg = palette.white }, opts.styles.variables),
+ Variable = vim.tbl_extend("force", { fg = palette.fg }, opts.styles.variables),
String = { fg = palette.medium_gray_blue },
Character = { fg = palette.green },
- Constant = { fg = palette.white },
+ Constant = { fg = palette.fg },
Number = { fg = palette.red },
Boolean = { fg = palette.red },
Float = { fg = palette.red },
- Identifier = { fg = palette.white },
+ Identifier = { fg = palette.fg },
Function = vim.tbl_extend("force", { fg = palette.cyan }, opts.styles.functions),
- Operator = { fg = palette.white },
- Type = vim.tbl_extend("force", { fg = palette.white }, opts.styles.type),
+ Operator = { fg = palette.fg },
+ Type = vim.tbl_extend("force", { fg = palette.fg }, opts.styles.type),
StorageClass = { fg = palette.gray_blue },
Structure = { fg = palette.gray_blue },
- Typedef = { fg = palette.white },
+ Typedef = { fg = palette.fg },
Keyword = vim.tbl_extend("force", { fg = palette.gray_blue }, opts.styles.keywords),
Statement = { fg = palette.gray_blue },
Conditional = { fg = palette.gray_blue },
Repeat = { fg = palette.gray_blue },
- Label = { fg = palette.white },
+ Label = { fg = palette.fg },
Exception = { fg = palette.red },
Include = { fg = palette.red },
- PreProc = { fg = palette.white },
+ PreProc = { fg = palette.fg },
Define = { fg = palette.red },
Macro = { fg = palette.cyan },
PreCondit = { fg = palette.medium_gray },
- Special = { fg = palette.white },
+ Special = { fg = palette.fg },
SpecialChar = { fg = palette.medium_gray_blue },
Tag = { fg = palette.blue },
Debug = { fg = palette.red },
- Delimiter = { fg = palette.white },
+ Delimiter = { fg = palette.fg },
SpecialComment = vim.tbl_extend(
"force",
{ fg = palette.medium_gray },
@@ -137,8 +137,8 @@ function M.highlight(palette, opts)
Todo = { fg = palette.red, bg = palette.bg, bold = true },
Error = { fg = palette.error, bg = palette.bg, bold = true },
TabLine = { fg = palette.gray, bg = palette.alt_bg },
- TabLineSel = { fg = palette.white, bg = palette.alt_bg },
- TabLineFill = { fg = palette.white, bg = palette.alt_bg },
+ TabLineSel = { fg = palette.fg, bg = palette.alt_bg },
+ TabLineFill = { fg = palette.fg, bg = palette.alt_bg },
WinSeparator = { fg = palette.medium_gray, bg = palette.bg },
DiagnosticFloatingError = { fg = palette.error },
FloatBorder = { fg = palette.light_gray },