diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-02-01 00:20:59 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-02-01 00:20:59 +0100 |
commit | 9488e253046e4a2d41bfb29435cb1525ae45b1b4 (patch) | |
tree | c267920b612cac1211962b0d767f6058a6b6d858 /lua | |
parent | 818d6cdd2f7939b233b381926746530db8dad931 (diff) |
Set todo color to a green
Diffstat (limited to 'lua')
-rw-r--r-- | lua/no-clown-fiesta/groups/treesitter.lua | 2 | ||||
-rw-r--r-- | lua/no-clown-fiesta/palette.lua | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lua/no-clown-fiesta/groups/treesitter.lua b/lua/no-clown-fiesta/groups/treesitter.lua index 7163dc0..d3653a6 100644 --- a/lua/no-clown-fiesta/groups/treesitter.lua +++ b/lua/no-clown-fiesta/groups/treesitter.lua @@ -10,7 +10,7 @@ function M.highlight(palette, opts) ["@comment.documentation"] = { fg = palette.medium_gray }, ["@comment.error"] = { fg = palette.error }, ["@comment.note"] = { fg = palette.light_gray }, - ["@comment.todo"] = { fg = palette.hint }, + ["@comment.todo"] = { fg = palette.todo }, ["@comment.warning"] = { fg = palette.warning }, ["@const.builtin"] = { fg = palette.red }, ["@const.macro"] = { fg = palette.cyan }, diff --git a/lua/no-clown-fiesta/palette.lua b/lua/no-clown-fiesta/palette.lua index 894b3fe..e60f9c5 100644 --- a/lua/no-clown-fiesta/palette.lua +++ b/lua/no-clown-fiesta/palette.lua @@ -27,6 +27,7 @@ local colors = { warning = "#ab8550", info = "#ab8550", hint = "#576f82", + todo = "#578266", accent_blue = "#191a20", accent_green = "#1c2019", accent_red = "#201919", |