diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-11 00:01:07 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-11 00:01:07 +0200 |
commit | 4e77bd64818118724cc9ba95d92950daf8eb1e3b (patch) | |
tree | 479fc568f40ac6d152c3cc0130bd57f413349b4b /lua/no-clown-fiesta | |
parent | e1d3ff2829a07708ed063170e9c38b2b5fee799e (diff) |
Darken neogit light colors
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r-- | lua/no-clown-fiesta/Neogit.lua | 4 | ||||
-rw-r--r-- | lua/no-clown-fiesta/palette.lua | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lua/no-clown-fiesta/Neogit.lua b/lua/no-clown-fiesta/Neogit.lua index 9ba0a71..dde9984 100644 --- a/lua/no-clown-fiesta/Neogit.lua +++ b/lua/no-clown-fiesta/Neogit.lua @@ -2,8 +2,8 @@ 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.fg, bg = C.neogit_light_green }, + NeogitDiffDeleteHighlight = { fg = C.fg, 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 }, diff --git a/lua/no-clown-fiesta/palette.lua b/lua/no-clown-fiesta/palette.lua index 6aacfd8..3eef6bf 100644 --- a/lua/no-clown-fiesta/palette.lua +++ b/lua/no-clown-fiesta/palette.lua @@ -28,9 +28,9 @@ local colors = { info_yellow = "#F4BF75", hint_blue = "#A5D6FF", hint_green = "#90A959", - neogit_light_green = "#90A959", + neogit_light_green = "#60713c", neogit_green = "#5f703b", - neogit_light_red = "#AC4142", + neogit_light_red = "#602425", neogit_red = "#5f2424", purple_test = "#ff00ff", cyan_test = "#00ffff", |