summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-07-10 01:17:43 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-07-10 01:17:43 +0200
commit3f384c48bd03d65ebf9f140e5cd6fa4fc0f5869b (patch)
tree0bf704d6e57ebef3e4918b7f27ba73960ca6009d
parent8d0c38ffb420a482f13ded36b9e333db7f705231 (diff)
Update neogit colors
-rw-r--r--lua/no-clown-fiesta/Neogit.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/no-clown-fiesta/Neogit.lua b/lua/no-clown-fiesta/Neogit.lua
index a95982c..2614f5e 100644
--- a/lua/no-clown-fiesta/Neogit.lua
+++ b/lua/no-clown-fiesta/Neogit.lua
@@ -2,11 +2,11 @@ local Neogit = {
NeogitNotificationInfo = { fg = C.green },
NeogitNotificationWarning = { fg = C.warning_orange },
NeogitNotificationError = { fg = C.red },
- NeogitDiffAddHighlight = { fg = C.green, bg = C.alt_bg },
- NeogitDiffDeleteHighlight = { fg = C.red, bg = C.alt_bg },
- NeogitDiffContextHighlight = { fg = C.fg, bg = C.alt_bg },
- NeogitHunkHeader = { fg = C.fg, bg = C.alt_bg },
- NeogitHunkHeaderHighlight = { fg = C.fg, bg = C.alt_bg },
+ NeogitDiffAddHighlight = { fg = C.green, bg = C.gray },
+ NeogitDiffDeleteHighlight = { fg = C.red, bg = C.gray },
+ NeogitDiffContextHighlight = { fg = C.fg, bg = C.gray },
+ NeogitHunkHeader = { fg = C.fg, bg = C.accent },
+ NeogitHunkHeaderHighlight = { fg = C.fg, bg = C.accent },
}
return Neogit