diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-10 23:58:01 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-10 23:58:01 +0200 |
commit | e1d3ff2829a07708ed063170e9c38b2b5fee799e (patch) | |
tree | 1e0fdd839884ecadcd896859afcd3023e6d8bffc /lua/no-clown-fiesta/Neogit.lua | |
parent | f230ed1a7b48c6c6dac00d817ea5242fead4350f (diff) |
Add neogit dark and light red and green colors
Diffstat (limited to 'lua/no-clown-fiesta/Neogit.lua')
-rw-r--r-- | lua/no-clown-fiesta/Neogit.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lua/no-clown-fiesta/Neogit.lua b/lua/no-clown-fiesta/Neogit.lua index 930874e..9ba0a71 100644 --- a/lua/no-clown-fiesta/Neogit.lua +++ b/lua/no-clown-fiesta/Neogit.lua @@ -1,14 +1,14 @@ local Neogit = { - NeogitNotificationInfo = { fg = C.neogit_add_bg }, + NeogitNotificationInfo = { fg = C.sign_add }, NeogitNotificationWarning = { fg = C.warning_orange }, - NeogitNotificationError = { fg = C.neogit_del_bg }, - NeogitDiffAddHighlight = { fg = C.sign_add, bg = C.neogit_add_bg }, - NeogitDiffDeleteHighlight = { fg = C.sign_delete, bg = C.neogit_del_bg }, - NeogitDiffContextHighlight = { fg = C.fg, bg = C.alt_bg }, + NeogitNotificationError = { fg = C.sign_delete }, + NeogitDiffAddHighlight = { fg = C.sign_add, bg = C.neogit_light_green }, + NeogitDiffDeleteHighlight = { fg = C.sign_delete, bg = C.neogit_light_red }, + NeogitDiffContextHighlight = { fg = C.light_gray, bg = C.alt_bg }, NeogitHunkHeader = { fg = C.fg, bg = C.alt_bg }, NeogitHunkHeaderHighlight = { fg = C.fg, bg = C.accent }, - NeogitDiffAdd = { fg = C.sign_add, bg = C.neogit_add_bg }, - NeogitDiffDelete = { fg = C.sign_delete, bg = C.neogit_del_bg }, + NeogitDiffAdd = { fg = C.fg, bg = C.neogit_green }, + NeogitDiffDelete = { fg = C.fg, bg = C.neogit_red }, } return Neogit |