summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-07-11 00:50:24 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-07-11 00:50:24 +0200
commitcf83fd53fa6f27d09131a138d4e2aeaf665cbdb3 (patch)
treeb6781e1d3323b910d78972d8ec792db70c887a73 /lua/no-clown-fiesta
parentc8bf45e47b9721101812411a6b492b5fb332847d (diff)
Swap light and dark colors neogit
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r--lua/no-clown-fiesta/Neogit.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/no-clown-fiesta/Neogit.lua b/lua/no-clown-fiesta/Neogit.lua
index 001c59a..bb33170 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_light_green },
- NeogitDiffDeleteHighlight = { fg = C.sign_delete, bg = C.neogit_light_red },
+ 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 },
NeogitHunkHeader = { fg = C.fg, bg = C.alt_bg },
NeogitHunkHeaderHighlight = { fg = C.fg, bg = C.accent },
- NeogitDiffAdd = { fg = C.sign_add, bg = C.neogit_green },
- NeogitDiffDelete = { fg = C.sign_delete, bg = C.neogit_red },
+ NeogitDiffAdd = { fg = C.sign_add, bg = C.neogit_light_green },
+ NeogitDiffDelete = { fg = C.sign_delete, bg = C.neogit_light_red },
}
return Neogit