Skip to content

Commit

Permalink
Merge pull request tomasr#6 from justinforce/brighter_bg
Browse files Browse the repository at this point in the history
Brighten console background colors when molokai_original=1
  • Loading branch information
tomasr committed Jul 30, 2012
2 parents aa8a761 + 80afffb commit eb4dfe0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions colors/molokai.vim
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,13 @@ end
" Support for 256-color terminal
"
if &t_Co > 255
if s:molokai_original == 1
hi Normal ctermbg=234
hi CursorLine ctermbg=235 cterm=none
else
hi Normal ctermfg=252 ctermbg=233
hi CursorLine ctermbg=234 cterm=none
endif
hi Boolean ctermfg=135
hi Character ctermfg=144
hi Number ctermfg=135
Expand Down Expand Up @@ -204,9 +211,7 @@ if &t_Co > 255
hi WarningMsg ctermfg=231 ctermbg=238 cterm=bold
hi WildMenu ctermfg=81 ctermbg=16

hi Normal ctermfg=252 ctermbg=233
hi Comment ctermfg=59
hi CursorLine ctermbg=234 cterm=none
hi CursorColumn ctermbg=234
hi ColorColumn ctermbg=234
hi LineNr ctermfg=250 ctermbg=234
Expand Down

0 comments on commit eb4dfe0

Please sign in to comment.