diff options
| -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",  }  |