diff options
author | Chris Kempson <git@chriskempson.com> | 2016-06-29 10:33:00 +0100 |
---|---|---|
committer | Chris Kempson <git@chriskempson.com> | 2016-06-29 10:33:00 +0100 |
commit | e48e3e48f08485cc981ec91044680e6d516c3ee3 (patch) | |
tree | f89d12cb5c26e07be358ed865c26dd6d078a563d /colors/base16-tomorrow.vim | |
parent | 8b47e598fcdf3a2f6d27b996492690f282b14815 (diff) |
Darkens the search text two shades
Diffstat (limited to 'colors/base16-tomorrow.vim')
-rw-r--r-- | colors/base16-tomorrow.vim | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/colors/base16-tomorrow.vim b/colors/base16-tomorrow.vim index 1c3b03f..076c9b7 100644 --- a/colors/base16-tomorrow.vim +++ b/colors/base16-tomorrow.vim @@ -13,21 +13,21 @@ if !has('gui_running') endif " GUI color definitions -let s:gui00 = "1d1f21" -let s:gui01 = "282a2e" -let s:gui02 = "373b41" -let s:gui03 = "969896" -let s:gui04 = "b4b7b4" -let s:gui05 = "c5c8c6" -let s:gui06 = "e0e0e0" -let s:gui07 = "ffffff" -let s:gui08 = "cc6666" -let s:gui09 = "de935f" -let s:gui0A = "f0c674" -let s:gui0B = "b5bd68" -let s:gui0C = "8abeb7" -let s:gui0D = "81a2be" -let s:gui0E = "b294bb" +let s:gui00 = "ffffff" +let s:gui01 = "e0e0e0" +let s:gui02 = "d6d6d6" +let s:gui03 = "8e908c" +let s:gui04 = "969896" +let s:gui05 = "4d4d4c" +let s:gui06 = "282a2e" +let s:gui07 = "1d1f21" +let s:gui08 = "c82829" +let s:gui09 = "f5871f" +let s:gui0A = "eab700" +let s:gui0B = "718c00" +let s:gui0C = "3e999f" +let s:gui0D = "4271ae" +let s:gui0E = "8959a8" let s:gui0F = "a3685a" " Terminal color definitions @@ -93,14 +93,14 @@ call <sid>hi("ErrorMsg", s:gui08, s:gui00, s:cterm08, s:cterm00, "", "") call <sid>hi("Exception", s:gui08, "", s:cterm08, "", "", "") call <sid>hi("FoldColumn", s:gui0C, s:gui01, s:cterm0C, s:cterm01, "", "") call <sid>hi("Folded", s:gui03, s:gui01, s:cterm03, s:cterm01, "", "") -call <sid>hi("IncSearch", s:gui01, s:gui09, s:cterm01, s:cterm09, "none", "") +call <sid>hi("IncSearch", s:gui01, s:gui0A, s:cterm01, s:cterm0A, "none", "") call <sid>hi("Italic", "", "", "", "", "none", "") call <sid>hi("Macro", s:gui08, "", s:cterm08, "", "", "") call <sid>hi("MatchParen", s:gui00, s:gui03, s:cterm00, s:cterm03, "", "") call <sid>hi("ModeMsg", s:gui0B, "", s:cterm0B, "", "", "") call <sid>hi("MoreMsg", s:gui0B, "", s:cterm0B, "", "", "") call <sid>hi("Question", s:gui0D, "", s:cterm0D, "", "", "") -call <sid>hi("Search", s:gui03, s:gui0A, s:cterm03, s:cterm0A, "", "") +call <sid>hi("Search", s:gui01, s:gui0A, s:cterm01, s:cterm0A, "", "") call <sid>hi("SpecialKey", s:gui03, "", s:cterm03, "", "", "") call <sid>hi("TooLong", s:gui08, "", s:cterm08, "", "", "") call <sid>hi("Underlined", s:gui08, "", s:cterm08, "", "", "") |