Skip to content

Commit

Permalink
Change foreground of TabLineFill.
Browse files Browse the repository at this point in the history
  • Loading branch information
lifepillar committed Jul 23, 2017
1 parent 6a7f572 commit a25a62c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion colors/wwdc16.vim
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ hi SpellRare ctermfg=13 ctermbg=NONE cterm=NONE,underline guifg=#8485ce guibg=NO
hi StatusLine ctermfg=2 ctermbg=15 cterm=NONE,reverse guifg=#64878f guibg=#ffffff gui=NONE,reverse guisp=NONE
hi StatusLineNC ctermfg=2 ctermbg=0 cterm=NONE,reverse guifg=#64878f guibg=#292c36 gui=NONE,reverse guisp=NONE
hi TabLine ctermfg=0 ctermbg=2 cterm=NONE guifg=#292c36 guibg=#64878f gui=NONE guisp=NONE
hi TabLineFill ctermfg=0 ctermbg=2 cterm=NONE guifg=#292c36 guibg=#64878f gui=NONE guisp=NONE
hi TabLineFill ctermfg=15 ctermbg=2 cterm=NONE guifg=#ffffff guibg=#64878f gui=NONE guisp=NONE
hi TabLineSel ctermfg=15 ctermbg=2 cterm=NONE guifg=#ffffff guibg=#64878f gui=NONE guisp=NONE
hi Title ctermfg=3 ctermbg=NONE cterm=NONE,bold guifg=#d28e5d guibg=NONE gui=NONE,bold guisp=NONE
hi VertSplit ctermfg=2 ctermbg=2 cterm=NONE guifg=#64878f guibg=#64878f gui=NONE guisp=NONE
Expand Down
2 changes: 1 addition & 1 deletion src/wwdc16.vim
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ call s:hl("SpellRare", s:purple, s:none, {'cterm': 'NONE,u
call s:hl("StatusLine", s:forestgreen, s:fg, {'cterm': 'NONE,reverse', 'gui': 'NONE,reverse'})
call s:hl("StatusLineNC", s:forestgreen, s:bg, {'cterm': 'NONE,reverse', 'gui': 'NONE,reverse'})
call s:hl("TabLine", s:bg, s:forestgreen)
call s:hl("TabLineFill", s:bg, s:forestgreen)
call s:hl("TabLineFill", s:fg, s:forestgreen)
call s:hl("TabLineSel", s:fg, s:forestgreen)
call s:hl("Title", s:orange, s:none, {'cterm': 'NONE,bold', 'gui': 'NONE,bold'})
call s:hl("VertSplit", s:forestgreen, s:forestgreen)
Expand Down

0 comments on commit a25a62c

Please sign in to comment.