This commit is contained in:
ManjaroOne666 2019-04-28 21:54:42 +01:00
parent 9875e3efe7
commit 0e5735be9b
2 changed files with 4 additions and 3 deletions

View File

@ -99,6 +99,7 @@
fg_strong2 = ["#9a9393", 247, "darkgray"]
fg_strong3 = ["#aeadad", 250, "white"]
fg_strong4 = ["#eee4e4", 255, "white"]
fg_special = ["#ffffff", 255, "white"]
fg_error = ["#c74444", 196, "red"]
fg_spellcap = ["#a67038", 166, "yellow"]
@ -274,7 +275,7 @@
[ "Directory", "NONE", ui_fg_strong3, "NONE" ],
[ "MatchParen", "NONE", fg_strong4, "underline" ],
[ "MatchParen", "NONE", fg_special, "bold" ],
[ "SpellBad", "NONE", fg_error, "NONE", fg_error ],
[ "SpellCap", "NONE", fg_spellcap, "NONE", fg_spellcap ],

View File

@ -73,7 +73,7 @@ if ($TERM =~ '256' || &t_Co >= 256) || has("gui_running")
hi Visual ctermbg=17 ctermfg=NONE cterm=NONE guibg=#384046 guifg=NONE gui=NONE
hi VisualNOS ctermbg=52 ctermfg=NONE cterm=NONE guibg=#463838 guifg=NONE gui=NONE
hi Directory ctermbg=NONE ctermfg=250 cterm=NONE guibg=NONE guifg=#aeadad gui=NONE
hi MatchParen ctermbg=NONE ctermfg=255 cterm=underline guibg=NONE guifg=#eee4e4 gui=underline
hi MatchParen ctermbg=NONE ctermfg=255 cterm=bold guibg=NONE guifg=#ffffff gui=bold
hi SpellBad ctermbg=NONE ctermfg=196 cterm=NONE guibg=NONE guifg=#c74444 gui=NONE guisp=#c74444
hi SpellCap ctermbg=NONE ctermfg=166 cterm=NONE guibg=NONE guifg=#a67038 gui=NONE guisp=#a67038
hi SpellLocal ctermbg=NONE ctermfg=247 cterm=NONE guibg=NONE guifg=#797532 gui=NONE guisp=#a67038
@ -438,7 +438,7 @@ elseif &t_Co == 8 || $TERM !~# '^linux' || &t_Co == 16
hi Visual ctermbg=darkblue ctermfg=NONE cterm=NONE
hi VisualNOS ctermbg=darkred ctermfg=NONE cterm=NONE
hi Directory ctermbg=NONE ctermfg=white cterm=NONE
hi MatchParen ctermbg=NONE ctermfg=white cterm=underline
hi MatchParen ctermbg=NONE ctermfg=white cterm=bold
hi SpellBad ctermbg=NONE ctermfg=red cterm=NONE
hi SpellCap ctermbg=NONE ctermfg=yellow cterm=NONE
hi SpellLocal ctermbg=NONE ctermfg=darkyellow cterm=NONE