From 105685aa32263e478545b35c309506ba0fee5189 Mon Sep 17 00:00:00 2001 From: Chris Kempson Date: Sun, 19 May 2013 12:44:26 +0100 Subject: Updated with base16-builder --- colors/base16-bright.vim | 142 ++++++++++++++---------- colors/base16-chalk.vim | 142 ++++++++++++++---------- colors/base16-default.vim | 142 ++++++++++++++---------- colors/base16-eighties.vim | 142 ++++++++++++++---------- colors/base16-greenscreen.vim | 142 ++++++++++++++---------- colors/base16-mocha.vim | 142 ++++++++++++++---------- colors/base16-monokai.vim | 142 ++++++++++++++---------- colors/base16-ocean.vim | 142 ++++++++++++++---------- colors/base16-pop.vim | 251 ++++++++++++++++++++++++++++++++++++++++++ colors/base16-railscasts.vim | 142 ++++++++++++++---------- colors/base16-solarized.vim | 142 ++++++++++++++---------- colors/base16-tomorrow.vim | 142 ++++++++++++++---------- 12 files changed, 1197 insertions(+), 616 deletions(-) create mode 100644 colors/base16-pop.vim (limited to 'colors') diff --git a/colors/base16-bright.vim b/colors/base16-bright.vim index 56eae55..343d7d8 100644 --- a/colors/base16-bright.vim +++ b/colors/base16-bright.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-bright" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting diff --git a/colors/base16-chalk.vim b/colors/base16-chalk.vim index 29d8cc9..9d1b995 100644 --- a/colors/base16-chalk.vim +++ b/colors/base16-chalk.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-chalk" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting diff --git a/colors/base16-default.vim b/colors/base16-default.vim index 7e8d088..5db7036 100644 --- a/colors/base16-default.vim +++ b/colors/base16-default.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-default" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting diff --git a/colors/base16-eighties.vim b/colors/base16-eighties.vim index 095f242..e64789e 100644 --- a/colors/base16-eighties.vim +++ b/colors/base16-eighties.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-eighties" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting diff --git a/colors/base16-greenscreen.vim b/colors/base16-greenscreen.vim index 55226ac..435af33 100644 --- a/colors/base16-greenscreen.vim +++ b/colors/base16-greenscreen.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-greenscreen" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting diff --git a/colors/base16-mocha.vim b/colors/base16-mocha.vim index cc3d3e0..28a21f4 100644 --- a/colors/base16-mocha.vim +++ b/colors/base16-mocha.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-mocha" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting diff --git a/colors/base16-monokai.vim b/colors/base16-monokai.vim index c1ea944..6fca04a 100644 --- a/colors/base16-monokai.vim +++ b/colors/base16-monokai.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-monokai" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting diff --git a/colors/base16-ocean.vim b/colors/base16-ocean.vim index f398532..d405a55 100644 --- a/colors/base16-ocean.vim +++ b/colors/base16-ocean.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-ocean" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting diff --git a/colors/base16-pop.vim b/colors/base16-pop.vim new file mode 100644 index 0000000..5766375 --- /dev/null +++ b/colors/base16-pop.vim @@ -0,0 +1,251 @@ +" Base16 Pop (https://github.com/chriskempson/base16) +" Scheme: Chris Kempson (http://chriskempson.com) + +" GUI Base16 Color Definitions +let s:gui00 = "000000" +let s:gui01 = "202020" +let s:gui02 = "303030" +let s:gui03 = "505050" +let s:gui04 = "b0b0b0" +let s:gui05 = "d0d0d0" +let s:gui06 = "e0e0e0" +let s:gui07 = "ffffff" +let s:gui08 = "eb008a" +let s:gui09 = "f29333" +let s:gui0A = "f8ca12" +let s:gui0B = "37b349" +let s:gui0C = "00aabb" +let s:gui0D = "0e5a94" +let s:gui0E = "b31e8d" +let s:gui0F = "7a2d00" + +" Terminal Base16 Color Definitions +let s:cterm00 = "00" +let s:cterm03 = "08" +let s:cterm05 = "07" +let s:cterm07 = "15" +let s:cterm08 = "01" +let s:cterm0A = "03" +let s:cterm0B = "02" +let s:cterm0C = "06" +let s:cterm0D = "04" +let s:cterm0E = "05" +if exists('base16colorspace') && base16colorspace == "256" + let s:cterm01 = "18" + let s:cterm02 = "19" + let s:cterm04 = "20" + let s:cterm06 = "21" + let s:cterm09 = "16" + let s:cterm0F = "17" +else + let s:cterm01 = "10" + let s:cterm02 = "11" + let s:cterm04 = "12" + let s:cterm06 = "13" + let s:cterm09 = "09" + let s:cterm0F = "14" +endif + +" Theme Setup +hi clear +syntax reset +let g:colors_name = "base16-pop" + +" Highlighting function +fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) + if a:guifg != "" + exec "hi " . a:group . " guifg=#" . a:guifg + endif + if a:guibg != "" + exec "hi " . a:group . " guibg=#" . a:guibg + endif + if a:ctermfg != "" + exec "hi " . a:group . " ctermfg=" . a:ctermfg + endif + if a:ctermbg != "" + exec "hi " . a:group . " ctermbg=" . a:ctermbg + endif + if a:attr != "" + exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr + endif +endfun + +" Vim Editor Colors +call hi("Bold", "", "", "", "", "bold") +call hi("Debug", s:gui08, "", s:cterm08, "", "") +call hi("Directory", s:gui0D, "", s:cterm0D, "", "") +call hi("ErrorMsg", s:gui08, s:gui00, s:cterm08, s:cterm00, "") +call hi("Exception", s:gui08, "", s:cterm08, "", "") +call hi("FoldColumn", "", s:gui01, "", s:cterm01, "") +call hi("Folded", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("IncSearch", s:gui0A, "", s:cterm0A, "", "") +call hi("Italic", "", "", "", "", "none") +call hi("Macro", s:gui08, "", s:cterm08, "", "") +call hi("MatchParen", s:gui03, s:gui00, s:cterm03, s:cterm00, "reverse") +call hi("ModeMsg", s:gui0B, "", s:cterm0B, "", "") +call hi("MoreMsg", s:gui0B, "", s:cterm0B, "", "") +call hi("Question", s:gui0A, "", s:cterm0A, "", "") +call hi("Search", s:gui0A, s:gui01, s:cterm0A, s:cterm01, "reverse") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("TooLong", s:gui08, "", s:cterm08, "", "") +call hi("Underlined", s:gui08, "", s:cterm08, "", "") +call hi("Visual", "", s:gui02, "", s:cterm02, "") +call hi("VisualNOS", s:gui08, "", s:cterm08, "", "") +call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") +call hi("WildMenu", s:gui08, "", s:cterm08, "", "") +call hi("Title", s:gui0D, "", s:cterm0D, "", "none") + +if &background == "dark" + call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") + call hi("NonText", s:gui03, "", s:cterm03, "", "") + call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") + call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") + call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") + call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") + call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") + call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") + call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") + call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") + call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") + call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") + call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") + call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") + call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") + call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") + call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") + call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") +else + call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") + call hi("NonText", s:gui05, "", s:cterm05, "", "") + call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") + call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") + call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") + call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") + call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") + call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") + call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") + call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") + call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") + call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") + call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") + call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") + call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") + call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") + call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") + call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") +endif + +" Standard Syntax Highlighting +call hi("Boolean", s:gui09, "", s:cterm09, "", "") +call hi("Character", s:gui08, "", s:cterm08, "", "") +call hi("Comment", s:gui03, "", s:cterm03, "", "") +call hi("Conditional", s:gui0E, "", s:cterm0E, "", "") +call hi("Constant", s:gui09, "", s:cterm09, "", "") +call hi("Define", s:gui0E, "", s:cterm0E, "", "none") +call hi("Delimiter", s:gui0F, "", s:cterm0F, "", "") +call hi("Float", s:gui09, "", s:cterm09, "", "") +call hi("Function", s:gui0D, "", s:cterm0D, "", "") +call hi("Identifier", s:gui08, "", s:cterm08, "", "none") +call hi("Include", s:gui0D, "", s:cterm0D, "", "") +call hi("Keyword", s:gui0E, "", s:cterm0E, "", "") +call hi("Label", s:gui0A, "", s:cterm0A, "", "") +call hi("Number", s:gui09, "", s:cterm09, "", "") +call hi("Operator", s:gui05, "", s:cterm05, "", "none") +call hi("PreProc", s:gui0A, "", s:cterm0A, "", "") +call hi("Repeat", s:gui0A, "", s:cterm0A, "", "") +call hi("Special", s:gui0C, "", s:cterm0C, "", "") +call hi("SpecialChar", s:gui0F, "", s:cterm0F, "", "") +call hi("Statement", s:gui08, "", s:cterm08, "", "") +call hi("StorageClass", s:gui0A, "", s:cterm0A, "", "") +call hi("String", s:gui0B, "", s:cterm0B, "", "") +call hi("Structure", s:gui0E, "", s:cterm0E, "", "") +call hi("Tag", s:gui0A, "", s:cterm0A, "", "") +call hi("Todo", s:gui0A, s:gui01, s:cterm0A, s:cterm01, "") +call hi("Type", s:gui09, "", s:cterm09, "", "none") +call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") + +" Spelling Highlighting +call hi("SpellBad", "", s:gui00, "", s:cterm08, "") +call hi("SpellLocal", "", s:gui00, "", s:cterm0D, "") +"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") + +" Additional Diff Highlighting +call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") +call hi("DiffChange", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("DiffDelete", s:gui08, s:gui00, s:cterm08, s:cterm00, "") +call hi("DiffText", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("DiffAdded", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") +call hi("DiffFile", s:gui08, s:gui00, s:cterm08, s:cterm00, "") +call hi("DiffNewFile", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") +call hi("DiffLine", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("DiffRemoved", s:gui08, s:gui00, s:cterm08, s:cterm00, "") + +" Ruby Highlighting +call hi("rubyAttribute", s:gui0D, "", s:cterm0D, "", "") +call hi("rubyConstant", s:gui0A, "", s:cterm0A, "", "") +call hi("rubyInterpolation", s:gui0B, "", s:cterm0B, "", "") +call hi("rubyInterpolationDelimiter", s:gui0F, "", s:cterm0F, "", "") +call hi("rubyRegexp", s:gui0C, "", s:cterm0C, "", "") +call hi("rubySymbol", s:gui0B, "", s:cterm0B, "", "") +call hi("rubyStringDelimiter", s:gui0B, "", s:cterm0B, "", "") + +" PHP Highlighting +call hi("phpMemberSelector", s:gui05, "", s:cterm05, "", "") +call hi("phpComparison", s:gui05, "", s:cterm05, "", "") +call hi("phpParent", s:gui05, "", s:cterm05, "", "") + +" HTML Highlighting +call hi("htmlBold", s:gui0A, "", s:cterm0A, "", "") +call hi("htmlItalic", s:gui0E, "", s:cterm0E, "", "") +call hi("htmlEndTag", s:gui05, "", s:cterm05, "", "") +call hi("htmlTag", s:gui05, "", s:cterm05, "", "") + +" CSS Highlighting +call hi("cssBraces", s:gui05, "", s:cterm05, "", "") +call hi("cssClassName", s:gui0E, "", s:cterm0E, "", "") +call hi("cssColor", s:gui0C, "", s:cterm0C, "", "") + +" SASS Highlighting +call hi("sassIdChar", s:gui08, "", s:cterm08, "", "") +call hi("sassClassChar", s:gui09, "", s:cterm09, "", "") +call hi("sassInclude", s:gui0E, "", s:cterm0E, "", "") +call hi("sassMixing", s:gui0E, "", s:cterm0E, "", "") +call hi("sassMixinName", s:gui0D, "", s:cterm0D, "", "") + +" JavaScript Highlighting +call hi("javaScript", s:gui05, "", s:cterm05, "", "") +call hi("javaScriptBraces", s:gui05, "", s:cterm05, "", "") +call hi("javaScriptNumber", s:gui09, "", s:cterm09, "", "") + +" Markdown Highlighting +call hi("markdownCode", s:gui0B, "", s:cterm0B, "", "") +call hi("markdownCodeBlock", s:gui0B, "", s:cterm0B, "", "") +call hi("markdownHeadingDelimiter", s:gui0D, "", s:cterm0D, "", "") + +" Git Highlighting +call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") +call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") + +" GitGutter Highlighting +if &background == "dark" + call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") + call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") + call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") +else + call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") + call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") + call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") +endif + + +" GitGutter Highlighting +call hi("NERDTreeDirSlash", s:gui0D, "", s:cterm0D, "", "") +call hi("NERDTreeExecFile", s:gui05, "", s:cterm05, "", "") + +" remove highlighting function +delf hi + +" Remove Colour Variables +unlet s:gui00 s:gui01 s:gui02 s:gui03 s:gui04 s:gui05 s:gui06 s:gui07 s:gui08 s:gui09 s:gui0A s:gui0B s:gui0C s:gui0D s:gui0E s:gui0F +unlet s:cterm00 s:cterm01 s:cterm02 s:cterm03 s:cterm04 s:cterm05 s:cterm06 s:cterm07 s:cterm08 s:cterm09 s:cterm0A s:cterm0B s:cterm0C s:cterm0D s:cterm0E s:cterm0F diff --git a/colors/base16-railscasts.vim b/colors/base16-railscasts.vim index 0971011..38ac7f5 100644 --- a/colors/base16-railscasts.vim +++ b/colors/base16-railscasts.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-railscasts" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting diff --git a/colors/base16-solarized.vim b/colors/base16-solarized.vim index 234596b..d3a137d 100644 --- a/colors/base16-solarized.vim +++ b/colors/base16-solarized.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-solarized" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting diff --git a/colors/base16-tomorrow.vim b/colors/base16-tomorrow.vim index f54b3d2..9b10b1b 100644 --- a/colors/base16-tomorrow.vim +++ b/colors/base16-tomorrow.vim @@ -54,22 +54,78 @@ let g:colors_name = "base16-tomorrow" " Highlighting function fun! hi(group, guifg, guibg, ctermfg, ctermbg, attr) if a:guifg != "" - exec "hi " . a:group . " guifg=#" . a:guifg + exec "hi " . a:group . " guifg=#" . s:DarkOrLightGui(a:guifg) endif if a:guibg != "" - exec "hi " . a:group . " guibg=#" . a:guibg + exec "hi " . a:group . " guibg=#" . s:DarkOrLightGui(a:guibg) endif if a:ctermfg != "" - exec "hi " . a:group . " ctermfg=" . a:ctermfg + exec "hi " . a:group . " ctermfg=" . s:DarkOrLightCterm(a:ctermfg) endif if a:ctermbg != "" - exec "hi " . a:group . " ctermbg=" . a:ctermbg + exec "hi " . a:group . " ctermbg=" . s:DarkOrLightCterm(a:ctermbg) endif if a:attr != "" exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr endif endfun +fun s:DarkOrLightGui(color) + if &background == "dark" + return a:color + endif + + if a:color == s:gui00 + return s:gui07 + elseif a:color == s:gui01 + return s:gui06 + elseif a:color == s:gui02 + return s:gui05 + elseif a:color == s:gui03 + return s:gui04 + elseif a:color == s:gui04 + return s:gui03 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui05 + return s:gui02 + elseif a:color == s:gui06 + return s:gui01 + elseif a:color == s:gui07 + return s:gui00 + endif + + return a:color +endfun + +fun s:DarkOrLightCterm(color) + if &background == "dark" + return a:color + endif + + if a:color == s:cterm00 + return s:cterm07 + elseif a:color == s:cterm01 + return s:cterm06 + elseif a:color == s:cterm02 + return s:cterm05 + elseif a:color == s:cterm03 + return s:cterm04 + elseif a:color == s:cterm04 + return s:cterm03 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm05 + return s:cterm02 + elseif a:color == s:cterm06 + return s:cterm01 + elseif a:color == s:cterm07 + return s:cterm00 + endif + + return a:color +endfun + " Vim Editor Colors call hi("Bold", "", "", "", "", "bold") call hi("Debug", s:gui08, "", s:cterm08, "", "") @@ -95,45 +151,25 @@ call hi("WarningMsg", s:gui08, "", s:cterm08, "", "") call hi("WildMenu", s:gui08, "", s:cterm08, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none") -if &background == "dark" - call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") - call hi("NonText", s:gui03, "", s:cterm03, "", "") - call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") - call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") - call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") - call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") - call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") - call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") - call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") - call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") - call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") -else - call hi("Cursor", s:gui00, s:gui02, s:cterm00, s:cterm02, "") - call hi("NonText", s:gui05, "", s:cterm05, "", "") - call hi("Normal", s:gui02, s:gui07, s:cterm02, s:cterm05, "") - call hi("LineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SignColumn", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("SpecialKey", s:gui05, "", s:cterm05, "", "") - call hi("StatusLine", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("StatusLineNC", s:gui04, s:gui06, s:cterm04, s:cterm06, "none") - call hi("VertSplit", s:gui05, s:gui05, s:cterm05, s:cterm05, "none") - call hi("ColorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorColumn", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLine", "", s:gui06, "", s:cterm06, "none") - call hi("CursorLineNr", s:gui04, s:gui06, s:cterm04, s:cterm06, "") - call hi("PMenu", s:gui05, s:gui03, s:cterm05, s:cterm03, "none") - call hi("PMenuSel", s:gui05, s:gui03, s:cterm05, s:cterm03, "reverse") - call hi("TabLine", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineFill", s:gui06, s:gui01, s:cterm06, s:cterm01, "reverse") - call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "reverse") -endif +call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "") +call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "") +call hi("NonText", s:gui03, "", s:cterm03, "", "") +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "") +call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("SpecialKey", s:gui03, "", s:cterm03, "", "") +call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none") +call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("VertSplit", s:gui02, s:gui02, s:cterm02, s:cterm02, "none") +call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLine", "", s:gui01, "", s:cterm01, "none") +call hi("CursorLineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "") +call hi("PMenu", s:gui04, s:gui01, s:cterm04, s:cterm01, "none") +call hi("PMenuSel", s:gui04, s:gui01, s:cterm04, s:cterm01, "reverse") +call hi("TabLine", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineFill", s:gui03, s:gui01, s:cterm03, s:cterm01, "none") +call hi("TabLineSel", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "none") " Standard Syntax Highlighting call hi("Boolean", s:gui09, "", s:cterm09, "", "") @@ -165,10 +201,10 @@ call hi("Type", s:gui09, "", s:cterm09, "", "none") call hi("Typedef", s:gui0A, "", s:cterm0A, "", "") " Spelling Highlighting -call hi("SpellBad", s:gui05, s:gui00, s:cterm05, s:cterm08, "") -call hi("SpellLocal", s:gui05, s:gui00, s:cterm05, s:cterm0D, "") -"call hi("SpellCap", s:gui00, s:gui08, s:cterm00, s:cterm08, "") -"call hi("SpellRare", s:gui00, s:gui08, s:cterm00, s:cterm08, "") +call hi("SpellBad", "", "NONE", "", "NONE", "undercurl") +call hi("SpellLocal", "", "NONE", "", "NONE", "undercurl") +call hi("SpellCap", "", "NONE", "", "NONE", "undercurl") +call hi("SpellRare", "", "NONE", "", "NONE", "undercurl") " Additional Diff Highlighting call hi("DiffAdd", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "") @@ -228,15 +264,9 @@ call hi("gitCommitOverflow", s:gui08, "", s:cterm08, "", "") call hi("gitCommitSummary", s:gui0B, "", s:cterm0B, "", "") " GitGutter Highlighting -if &background == "dark" - call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") - call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") - call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") -else - call hi("GitGutterAdd", s:gui0B, s:gui06, s:cterm0B, s:cterm06, "") - call hi("GitGutterChange", s:gui0D, s:gui06, s:cterm0D, s:cterm06, "") - call hi("GitGutterDelete", s:gui08, s:gui06, s:cterm08, s:cterm06, "") -endif +call hi("GitGutterAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "") +call hi("GitGutterChange", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "") +call hi("GitGutterDelete", s:gui08, s:gui01, s:cterm08, s:cterm01, "") " GitGutter Highlighting -- cgit v1.2.3