Change Title in dark themes to yellow.

It looks better than orange, especially in the tabline.
This commit is contained in:
Lifepillar
2016-05-21 19:47:01 +02:00
parent 1a84708f39
commit 4163d8e6c5
5 changed files with 9 additions and 5 deletions

View File

@@ -316,7 +316,11 @@ for s:solarized_background in ["dark", "light"]
" Changed by Lifepillar: lighter vertical bars:
call s:put("hi! VertSplit" .s:fmt_none .s:fg_base01 .s:bg_base01)
endif
call s:put("hi! Title" .s:fmt_bold .s:fg_orange .s:bg_none)
if s:solarized_background == "dark"
call s:put("hi! Title" .s:fmt_bold .s:fg_yellow .s:bg_none)
else
call s:put("hi! Title" .s:fmt_bold .s:fg_orange .s:bg_none)
endif
call s:put("hi! VisualNOS" .s:fg_none .s:bg_base02 .s:fmt_revbb)
call s:put("hi! WarningMsg" .s:fmt_bold .s:fg_orange .s:bg_none)
if s:solarized_contrast == "flat"