From 2f4b64b355f028fe9c5d23f2b428fe3b536387fa Mon Sep 17 00:00:00 2001 From: saccarosium Date: Fri, 8 Jul 2022 08:10:38 +0200 Subject: [PATCH] Fix: changing `diff` fg color for better readability (#85) --- colors/codedark.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/colors/codedark.vim b/colors/codedark.vim index 8a341c3..962bf5c 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -142,9 +142,9 @@ call hi('Cursor', s:cdCursorDark, s:cdCursorLight, 'none', {}) call hi('CursorLine', {}, s:cdCursorDarkDark, 'none', {}) call hi('CursorColumn', {}, s:cdCursorDarkDark, 'none', {}) call hi('Directory', s:cdBlue, s:cdBack, 'none', {}) -call hi('DiffAdd', {}, s:cdDiffGreenLight, 'none', {}) -call hi('DiffChange', {}, s:cdDiffBlue, 'none', {}) -call hi('DiffDelete', {}, s:cdDiffRedLight, 'none', {}) +call hi('DiffAdd', s:cdFront, s:cdDiffGreenLight, 'none', {}) +call hi('DiffChange', s:cdFront, s:cdDiffBlue, 'none', {}) +call hi('DiffDelete', s:cdFront, s:cdDiffRedLight, 'none', {}) call hi('DiffText', s:cdBack, s:cdDiffBlueLight, 'none', {}) call hi('EndOfBuffer', s:cdLineNumber, s:cdBack, 'none', {}) call hi('ErrorMsg', s:cdRed, s:cdBack, 'none', {})