Stop using bg colors for fg text

This commit is contained in:
Reed Esau
2014-08-29 23:28:02 -06:00
parent 33c39a00f9
commit e251c1dc5c

View File

@@ -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})