From e251c1dc5c8272d92e9a8dc1ccd8579a9ffba9ac Mon Sep 17 00:00:00 2001 From: Reed Esau Date: Fri, 29 Aug 2014 23:28:02 -0600 Subject: [PATCH] Stop using bg colors for fg text --- colors/pencil.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/colors/pencil.vim b/colors/pencil.vim index 5df5a78..68467de 100644 --- a/colors/pencil.vim +++ b/colors/pencil.vim @@ -202,14 +202,14 @@ call s:h(1, "Todo", {"fg": s:actual_white, "bg": s:pink, "gui": "bold" " ordered according to `:help hitest.vim` call s:h(1, "SpecialKey", {"fg": s:light_green}) -call s:h(1, "NonText", {"fg": s:bg_subtle}) +call s:h(1, "NonText", {"fg": s:medium_gray}) call s:h(1, "Directory", {"fg": s:dark_blue}) call s:h(1, "ErrorMsg", {"fg": s:pink}) call s:h(1, "IncSearch", {"bg": s:yellow, "fg": s:light_black}) call s:h(1, "Search", {"bg": s:bg_subtle}) call s:h(1, "MoreMsg", {"fg": s:medium_gray, "gui": "bold", "cterm": "bold"}) hi! link ModeMsg MoreMsg -call s:h(1, "LineNr", {"fg": s:bg_subtle}) +call s:h(1, "LineNr", {"fg": s:medium_gray}) call s:h(0, "CursorLineNr", {"fg": s:blue, "bg": s:bg_very_subtle}) call s:h(1, "Question", {"fg": s:red}) call s:h(1, "StatusLine", {"bg": s:bg_very_subtle}) @@ -222,7 +222,7 @@ call s:h(0, "VisualNOS", {"bg": s:bg_subtle}) call s:h(1, "WarningMsg", {"fg": s:red}) call s:h(1, "WildMenu", {"fg": s:bg, "bg": s:norm}) call s:h(1, "Folded", {"fg": s:medium_gray}) -call s:h(1, "FoldColumn", {"fg": s:bg_subtle}) +call s:h(1, "FoldColumn", {"fg": s:medium_gray}) call s:h(1, "DiffAdd", {"fg": s:green}) call s:h(1, "DiffDelete", {"fg": s:red}) call s:h(1, "DiffChange", {"fg": s:dark_yellow})