summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-14 01:22:14 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-14 01:22:14 +0200
commit3220e37aa8ed3fbd3a796066e00170d7c93a996e (patch)
tree575b4b1f10d3f22418bd3d613000bba694ea5ef1
parent9ee14a92f06f236d2a912ec6dfc9dc4b60df931c (diff)
Add neogit blue
-rw-r--r--lua/no-clown-fiesta/highlights.lua2
-rw-r--r--lua/no-clown-fiesta/palette.lua1
2 files changed, 2 insertions, 1 deletions
diff --git a/lua/no-clown-fiesta/highlights.lua b/lua/no-clown-fiesta/highlights.lua
index 4749bde..a4e3fa1 100644
--- a/lua/no-clown-fiesta/highlights.lua
+++ b/lua/no-clown-fiesta/highlights.lua
@@ -33,7 +33,7 @@ function M.highlight(palette, opts)
DiffAdd = { fg = palette.sign_add, bg = palette.neogit_green },
DiffChange = {
fg = palette.sign_change,
- bg = palette.gray_blue,
+ bg = palette.neogit_blue,
},
DiffDelete = { fg = palette.sign_delete, bg = palette.neogit_red },
QuickFixLine = { bg = palette.accent },
diff --git a/lua/no-clown-fiesta/palette.lua b/lua/no-clown-fiesta/palette.lua
index 487f1e7..911c7e5 100644
--- a/lua/no-clown-fiesta/palette.lua
+++ b/lua/no-clown-fiesta/palette.lua
@@ -30,6 +30,7 @@ local colors = {
hint_blue = "#A5D6FF",
hint_green = "#90A959",
neogit_light_green = "#4f5c32",
+ neogit_blue = "#33424f",
neogit_green = "#3f4928",
neogit_light_red = "#4f2929",
neogit_red = "#3f2121",