summary refs log tree commit diff
path: root/.vim/lua/colors.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.vim/lua/colors.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/.vim/lua/colors.lua b/.vim/lua/colors.lua
index de4a997..ac6109f 100644
--- a/.vim/lua/colors.lua
+++ b/.vim/lua/colors.lua
@@ -71,9 +71,9 @@ return lush(function()
     CursorColumn { ColorColumn }, -- Screen-column at the cursor, when 'cursorcolumn' is set.
     CursorLine   { ColorColumn }, -- Screen-line at the cursor, when 'cursorline' is set.  Low-priority if foreground (ctermfg OR guifg) is not set.
     -- Directory    { }, -- directory names (and other special names in listings)
-    DiffAdd      { fg = hsl(p.bright.green) }, -- diff mode: Added line |diff.txt|
-    DiffChange   { fg = hsl(p.bright.cyan) }, -- diff mode: Changed line |diff.txt|
-    DiffDelete   { fg = hsl(p.bright.red) }, -- diff mode: Deleted line |diff.txt|
+    DiffAdd      { fg = hsl(p.bright.black), bg = hsl(p.bright.green) }, -- diff mode: Added line |diff.txt|
+    DiffChange   { fg = hsl(p.bright.black), bg = hsl(p.bright.cyan) }, -- diff mode: Changed line |diff.txt|
+    DiffDelete   { fg = hsl(p.bright.black), bg = hsl(p.bright.red) }, -- diff mode: Deleted line |diff.txt|
     DiffText     { fg = hsl(p.normal.white) }, -- diff mode: Changed text within a changed line |diff.txt|
     EndOfBuffer  { fg = hsl(p.bright.blue) }, -- filler lines (~) after the end of the buffer.  By default, this is highlighted like |hl-NonText|.
     TermCursor   { Cursor }, -- cursor in a focused terminal
@@ -282,11 +282,11 @@ return lush(function()
     IndentGuidesEven { bg = hsl(p.dim.white).darken(40) },
 
     SignifyLineChange { DiffChange },
-    SignifySignChange { SignifyLineChange },
     SignifyLineAdd { DiffAdd },
-    SignifySignAdd { SignifyLineAdd },
     SignifyLineDelete { DiffDelete },
-    SignifySignDelete { SignifyLineDelete },
+    SignifySignChange { fg = SignifyLineChange.bg },
+    SignifySignAdd { fg = SignifyLineAdd.bg },
+    SignifySignDelete { fg = SignifyLineDelete.bg },
 
     -- git
     gitcommitSummary { Bold },
@@ -296,7 +296,7 @@ return lush(function()
     -- gitcommitUntrackedFile {},
     -- gitcommitBranch {},
     -- gitcommitDiscardedType {},
-    gitcommitDiff { fg = hsl(p.dim.white) },
+    gitcommitDiff { Comment },
     diffFile { fg = hsl(p.bright.yellow) },
     diffSubname { diffFile },
     diffIndexLine { diffFile },