Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change White guibg to compatible with macvim and some minor changes. #13

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions colors/mango.vim
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@
let Gray = "guifg=#bcbcbc guibg=NONE gui=NONE ctermfg=250 ctermbg=NONE cterm=NONE"
let Blue = "guifg=#5fafdf guibg=NONE gui=NONE ctermfg=74 ctermbg=NONE cterm=NONE"
let Pink = "guifg=#ff5faf guibg=NONE gui=NONE ctermfg=205 ctermbg=NONE cterm=NONE"
let Pink2 = "guifg=#ff87df guibg=NONE gui=NONE ctermfg=212 ctermbg=NONE cterm=NONE"
let Purple = "guifg=#af87ff guibg=NONE gui=NONE ctermfg=141 ctermbg=NONE cterm=NONE"
let Silver = "guifg=#8a8a8a guibg=NONE gui=NONE ctermfg=245 ctermbg=NONE cterm=NONE"
let White = "guifg=#eeeeee guibg=NONE gui=NONE ctermfg=255 ctermbg=NONE cterm=NONE"
let White = "guifg=#eeeeee guibg=#282828 gui=NONE ctermfg=253 ctermbg=NONE cterm=NONE"
let Purple2 = "guifg=#b294bb guibg=NONE gui=NONE ctermfg=109 ctermbg=NONE cterm=NONE"
" }}}

" Light Background: {{{
Expand All @@ -44,8 +46,8 @@
exe "hi Delimiter " .Black
exe "hi Exception " .Peach
exe "hi Float " .Blue
exe "hi Function " .Black
exe "hi Identifier " .Black
exe "hi Function " .Pink
exe "hi Identifier " .Blue
exe "hi Ignore " .Blue
exe "hi Include " .Purple
exe "hi Keyword " .Peach
Expand All @@ -57,7 +59,7 @@
exe "hi Number " .Blue
exe "hi Operator " .Peach
exe "hi PreCondit " .Purple
exe "hi PreProc " .Purple
exe "hi PreProc " .Orange
exe "hi Repeat " .Peach
exe "hi Special " .Pink
exe "hi SpecialChar " .Pink
Expand All @@ -69,6 +71,8 @@
exe "hi Tag " .Black
exe "hi Type " .Orange
exe "hi TypeDef " .Orange
exe "hi javaScriptFuncExp " .Pink2
exe "hi javaScriptBraces " .Pink

hi CursorLine guifg=NONE guibg=#ffffff gui=NONE ctermfg=NONE ctermbg=231 cterm=NONE
hi ColorColumn guifg=#ff0000 guibg=#ffffff gui=NONE ctermfg=203 ctermbg=231 cterm=NONE
Expand All @@ -86,11 +90,12 @@
exe "hi Delimiter " .White
exe "hi Exception " .Peach
exe "hi Float " .Blue
exe "hi Function " .White
exe "hi Identifier " .White
exe "hi Function " .Pink
exe "hi Identifier " .Blue
exe "hi Ignore " .Blue
exe "hi Include " .Purple
exe "hi Keyword " .Peach
exe "hi Keyword " .Orange
"exe "hi Keyword " .Peach
exe "hi Label " .Peach
exe "hi LineNr " .Black
exe "hi Macro " .Purple
Expand All @@ -107,16 +112,19 @@
exe "hi Statement " .Peach
exe "hi StorageClass " .Orange
exe "hi String " .Green
exe "hi Structure " .Orange
exe "hi Structure " .Purple2
exe "hi Tag " .White
exe "hi Type " .Orange
exe "hi TypeDef " .Orange
exe "hi javaScriptFuncExp " .Pink2
exe "hi javaScriptBraces " .Pink

hi CursorLine guifg=NONE guibg=#1c1c1c gui=NONE ctermfg=NONE ctermbg=234 cterm=NONE
hi ColorColumn guifg=#ff0000 guibg=#1c1c1c gui=NONE ctermfg=203 ctermbg=234 cterm=NONE
endif
" }}}

hi Search guifg=#eeeeee guibg=#ffff00 gui=NONE ctermfg=232 ctermbg=180 cterm=NONE
hi Error guifg=#eeeeee guibg=#ff0000 gui=NONE ctermfg=255 ctermbg=196 cterm=NONE
hi Todo guifg=#080808 guibg=#ffd700 gui=NONE ctermfg=232 ctermbg=220 cterm=NONE
hi Underlined guifg=NONE guibg=NONE gui=underline ctermfg=NONE ctermbg=NONE cterm=underline
Expand Down