summaryrefslogtreecommitdiff
path: root/lua/onedarker/palette.lua
diff options
context:
space:
mode:
authorSubho Banerjee <[email protected]>2021-09-26 02:20:50 -0500
committerGitHub <[email protected]>2021-09-26 10:50:50 +0330
commit61b56a7bb19771247fc2c40b453d0f905581125e (patch)
tree0c3c922fa28e61ea00592b019f5003f67219369b /lua/onedarker/palette.lua
parent464f092ada7b6e54f5ad65aea0ae3c1b55f618f4 (diff)
fix: Adding `Diff*` highlight groups in onedarker (#1594)
Fixes #1576
Diffstat (limited to 'lua/onedarker/palette.lua')
-rw-r--r--lua/onedarker/palette.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/onedarker/palette.lua b/lua/onedarker/palette.lua
index c3116b1e..ab15d392 100644
--- a/lua/onedarker/palette.lua
+++ b/lua/onedarker/palette.lua
@@ -1,4 +1,5 @@
local colors = {
+ none = "NONE",
fg = "#abb2bf",
bg = "#1f2227",
alt_bg = "#282c34",
@@ -34,6 +35,10 @@ local colors = {
purple_test = "#ff007c",
cyan_test = "#00dfff",
ui_blue = "#264F78",
+ diff_add = "#303d27",
+ diff_delete = "#6e3b40",
+ diff_change = "#18344c",
+ diff_text = "#265478",
}
return colors