diff options
author | Chris Kempson <git@chriskempson.com> | 2013-05-19 13:07:00 +0100 |
---|---|---|
committer | Chris Kempson <git@chriskempson.com> | 2013-05-19 13:07:00 +0100 |
commit | dffebc614d364b0e23cf35f224cb2e68434d135f (patch) | |
tree | 5abdf30f493323dabcc76ad8e964871e46ace69a /colors/base16-mocha.vim | |
parent | 105685aa32263e478545b35c309506ba0fee5189 (diff) |
Updated with base16-builder
Diffstat (limited to 'colors/base16-mocha.vim')
-rw-r--r-- | colors/base16-mocha.vim | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/colors/base16-mocha.vim b/colors/base16-mocha.vim index 28a21f4..30cd786 100644 --- a/colors/base16-mocha.vim +++ b/colors/base16-mocha.vim @@ -54,23 +54,24 @@ let g:colors_name = "base16-mocha" " Highlighting function fun! <SID>hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) + exec "hi " . a:group . " guifg=#" . s:gui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) + exec "hi " . a:group . " guibg=#" . s:gui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) + exec "hi " . a:group . " ctermfg=" . s:cterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) + exec "hi " . a:group . " ctermbg=" . s:cterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun -fun s:DarkOrLightGui(color) +" Return GUI color for light/dark variants +fun! s:gui(color) if &background == "dark" return a:color endif @@ -98,7 +99,8 @@ fun s:DarkOrLightGui(color) return a:color endfun -fun s:DarkOrLightCterm(color) +" Return terminal color for light/dark variants +fun! s:cterm(color) if &background == "dark" return a:color endif @@ -201,10 +203,10 @@ call <SID>hi("Type", s:gui09, "", s:cterm09, "", "none") call <SID>hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call <SID>hi("SpellBad", "", "NONE", "", "NONE", "undercurl") -call <SID>hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") -call <SID>hi("SpellCap", "", "NONE", "", "NONE", "undercurl") -call <SID>hi("SpellRare", "", "NONE", "", "NONE", "undercurl") +call <SID>hi("SpellBad", "", s:gui00, "", s:cterm00, "undercurl") +call <SID>hi("SpellLocal", "", s:gui00, "", s:cterm00, "undercurl") +call <SID>hi("SpellCap", "", s:gui00, "", s:cterm00, "undercurl") +call <SID>hi("SpellRare", "", s:gui00, "", s:cterm00, "undercurl") " Additional Diff Highlighting call <SID>hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") |