From e0a642c9494fede3c55503bb33ecc9d2363e9ee2 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Thu, 6 Jan 2022 15:18:17 +0530 Subject: [PATCH] nvim: colors: yolokai: Set Diff color background to black --- nvim/.config/nvim/colors/yolokai.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nvim/.config/nvim/colors/yolokai.vim b/nvim/.config/nvim/colors/yolokai.vim index d801b30..f689922 100644 --- a/nvim/.config/nvim/colors/yolokai.vim +++ b/nvim/.config/nvim/colors/yolokai.vim @@ -150,10 +150,10 @@ local highlight_groups = { Folded = {bg=darkblack, fg=warmgrey, style='italic'}, --[[ 4.2.6. Diffs]] - DiffAdd = {bg=lightblack3, fg=darkgreen, style=NONE}, - DiffChange = {bg=lightblack3, fg=yellow, style=NONE}, - DiffDelete = {bg=lightblack3, fg=red, style=NONE}, - DiffText = {bg=lightblack3, fg=NONE, style=NONE}, + DiffAdd = {bg=black, fg=darkgreen, style=NONE}, + DiffChange = {bg=black, fg=yellow, style=NONE}, + DiffDelete = {bg=black, fg=red, style=NONE}, + DiffText = {bg=black, fg=NONE, style=NONE}, --[[ 4.2.7. Searching]] IncSearch = {bg=NONE, fg=NONE, style='inverse' },