Skip to content

Commit

Permalink
Remove hard-coded colors in Normal group.
Browse files Browse the repository at this point in the history
  • Loading branch information
lifepillar committed Jun 11, 2017
1 parent f53d987 commit f533b7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wwdc16.vim
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ let colors_name = 'wwdc16'
.

call s:put("if !has('gui_running') && get(g:, 'wwdc16_term_trans_bg', 0)")
call s:put(" hi Normal ctermfg=15 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE")
call s:put(" hi Normal ctermfg=".s:fg[1]." ctermbg=NONE cterm=NONE guifg=".s:fg[0]." guibg=NONE gui=NONE")
call s:put("else")
call s:put(" hi Normal ctermfg=15 ctermbg=0 cterm=NONE guifg=#ffffff guibg=#292c36 gui=NONE")
call s:put(" hi Normal ctermfg=".s:fg[1]." ctermbg=".s:bg[1]." cterm=NONE guifg=".s:fg[0]." guibg=".s:bg[0]." gui=NONE")
call s:put("endif")

call s:hl("ColorColumn", s:none, s:grey1)
Expand Down

0 comments on commit f533b7a

Please sign in to comment.