diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-21 21:11:47 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-21 21:11:47 +0200 |
commit | d606be8904a93365435e294a55d1db048891d505 (patch) | |
tree | 6146e491c40c7981029fc75c2001294a22340281 /lua | |
parent | 4fca759849f6cadf00b0956a562d39eb2fdeb5fe (diff) |
Add colors to hl
Diffstat (limited to 'lua')
-rw-r--r-- | lua/no-clown-fiesta/highlights.lua | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/lua/no-clown-fiesta/highlights.lua b/lua/no-clown-fiesta/highlights.lua index c8cddb1..6f9f5c7 100644 --- a/lua/no-clown-fiesta/highlights.lua +++ b/lua/no-clown-fiesta/highlights.lua @@ -13,7 +13,7 @@ local highlights = { PmenuSel = { fg = C.blue, bg = C.alt_bg }, WildMenu = { fg = C.blue, bg = C.alt_bg }, CursorLineNr = { fg = C.light_gray, style = "bold" }, - Comment = { fg = C.blue, style = Config.italic_comments }, + Comment = { fg = C.medium_gray, style = Config.italic_comments }, Folded = { fg = C.light_gray, bg = C.alt_bg }, FoldColumn = { fg = C.light_gray, bg = C.alt_bg }, LineNr = { fg = C.gray }, @@ -62,19 +62,19 @@ local highlights = { Boolean = { fg = C.red }, Float = { fg = C.red }, Identifier = { fg = C.white }, - Function = { fg = C.purple, style = Config.italic_functions }, - Operator = { fg = C.orange }, + Function = { fg = C.gray_blue, style = Config.italic_functions }, + Operator = { fg = C.white }, Type = { fg = C.white }, - StorageClass = { fg = C.yellow }, - Structure = { fg = C.orange }, - Typedef = { fg = C.purple }, - Keyword = { fg = C.orange, style = Config.italic_keywords }, - Statement = { fg = C.orange }, - Conditional = { fg = C.orange }, - Repeat = { fg = C.orange }, - Label = { fg = C.orange }, - Exception = { fg = C.orange }, - Include = { fg = C.orange }, + StorageClass = { fg = C.gray_blue }, + Structure = { fg = C.gray_blue }, + Typedef = { fg = C.white }, + Keyword = { fg = C.gray_blue, style = Config.italic_keywords }, + Statement = { fg = C.gray_blue }, + Conditional = { fg = C.gray_blue }, + Repeat = { fg = C.gray_blue }, + Label = { fg = C.white }, + Exception = { fg = C.red }, + Include = { fg = C.red }, PreProc = { fg = C.orange }, Define = { fg = C.orange }, Macro = { fg = C.orange }, @@ -84,7 +84,7 @@ local highlights = { Tag = { fg = C.pale_purple }, Debug = { fg = C.red }, Delimiter = { fg = C.gray }, - SpecialComment = { fg = C.blue, style = Config.italic_comments }, + SpecialComment = { fg = C.medium_gray, style = Config.italic_comments }, Underlined = { style = "underline" }, Bold = { style = "bold" }, Italic = { style = "italic" }, |