diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-11 22:38:28 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-11 22:38:28 +0200 |
commit | c932346f37285b81cef6c07b3a3422a286ec937c (patch) | |
tree | 8a804a99e4a2c32d1c6a25beba8092f176590ddb /lua/no-clown-fiesta | |
parent | cf83fd53fa6f27d09131a138d4e2aeaf665cbdb3 (diff) |
Update colors for neogit again
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r-- | lua/no-clown-fiesta/Neogit.lua | 10 | ||||
-rw-r--r-- | lua/no-clown-fiesta/palette.lua | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/lua/no-clown-fiesta/Neogit.lua b/lua/no-clown-fiesta/Neogit.lua index bb33170..94da073 100644 --- a/lua/no-clown-fiesta/Neogit.lua +++ b/lua/no-clown-fiesta/Neogit.lua @@ -2,13 +2,13 @@ local Neogit = { NeogitNotificationInfo = { fg = C.sign_add }, NeogitNotificationWarning = { fg = C.warning_orange }, NeogitNotificationError = { fg = C.sign_delete }, - NeogitDiffAddHighlight = { fg = C.sign_add, bg = C.neogit_green }, - NeogitDiffDeleteHighlight = { fg = C.sign_delete, bg = C.neogit_red }, - NeogitDiffContextHighlight = { fg = C.fg, bg = C.bg }, + NeogitDiffAddHighlight = { fg = C.sign_add, bg = C.neogit_light_green }, + NeogitDiffDeleteHighlight = { fg = C.sign_delete, bg = C.neogit_light_red }, + NeogitDiffContextHighlight = { fg = C.fg, bg = C.accent }, NeogitHunkHeader = { fg = C.fg, bg = C.alt_bg }, NeogitHunkHeaderHighlight = { fg = C.fg, bg = C.accent }, - NeogitDiffAdd = { fg = C.sign_add, bg = C.neogit_light_green }, - NeogitDiffDelete = { fg = C.sign_delete, bg = C.neogit_light_red }, + NeogitDiffAdd = { fg = C.sign_add, bg = C.neogit_green }, + NeogitDiffDelete = { fg = C.sign_delete, bg = C.neogit_red }, } return Neogit diff --git a/lua/no-clown-fiesta/palette.lua b/lua/no-clown-fiesta/palette.lua index 08e8434..0962464 100644 --- a/lua/no-clown-fiesta/palette.lua +++ b/lua/no-clown-fiesta/palette.lua @@ -28,10 +28,10 @@ local colors = { info_yellow = "#F4BF75", hint_blue = "#A5D6FF", hint_green = "#90A959", - neogit_light_green = "#30371e", - neogit_green = "#202514", - neogit_light_red = "#301919", - neogit_red = "#201111", + neogit_light_green = "#4f5c32", + neogit_green = "#3f4928", + neogit_light_red = "#4f2929", + neogit_red = "#3f2121", purple_test = "#ff00ff", cyan_test = "#00ffff", } |