diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-16 23:24:21 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-16 23:24:21 +0200 |
commit | 4ed89593d0b0be40a870e87e63838e29a018d7a9 (patch) | |
tree | d11dc674a2a34bee9152b121421e62f73cadbafe /lua | |
parent | 332ce19184155c405c9f84a44c95bc5d1549a73f (diff) |
Update highlight color
Diffstat (limited to 'lua')
-rw-r--r-- | lua/no-clown-fiesta/highlights.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/no-clown-fiesta/highlights.lua b/lua/no-clown-fiesta/highlights.lua index f435511..5ebbc45 100644 --- a/lua/no-clown-fiesta/highlights.lua +++ b/lua/no-clown-fiesta/highlights.lua @@ -68,9 +68,9 @@ function M.highlight(palette, opts) Boolean = { fg = palette.red }, Float = { fg = palette.red }, Identifier = { fg = palette.white }, - Function = { fg = palette.gray_blue, style = opts.functions }, + Function = { fg = palette.cyan, style = opts.functions }, Operator = { fg = palette.white }, - Type = { fg = palette.white }, + Type = { fg = palette.white, style = opts.type }, StorageClass = { fg = palette.gray_blue }, Structure = { fg = palette.gray_blue }, Typedef = { fg = palette.white }, @@ -89,7 +89,7 @@ function M.highlight(palette, opts) SpecialChar = { fg = palette.medium_gray_blue }, Tag = { fg = palette.pale_purple }, Debug = { fg = palette.red }, - Delimiter = { fg = palette.gray }, + Delimiter = { fg = palette.white }, SpecialComment = { fg = palette.medium_gray, style = opts.comments }, Underlined = { style = "underline" }, Bold = { style = "bold" }, |