Skip to content

Instantly share code, notes, and snippets.

@spearwolf
Created March 10, 2009 09:51
Show Gist options
  • Save spearwolf/76834 to your computer and use it in GitHub Desktop.
Save spearwolf/76834 to your computer and use it in GitHub Desktop.
light vim colorscheme original based on syntax highlighting on github.com
" ----------------------------------------------------------
" a light colorscheme based on syntax hiliting on github.com
" created by wolfger@spearwolf.de
" ----------------------------------------------------------
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "github"
hi Normal gui=NONE guibg=#f8f8ff guifg=#000000
hi Constant gui=NONE guifg=#990073
hi String gui=NONE guibg=#eeeef6 guifg=#DD1144
hi Type gui=NONE guifg=#008080
hi Identifier gui=bold guifg=#445588
hi Statement gui=bold guifg=#000000
hi PreProc gui=bold guifg=#203060
hi Comment gui=italic guifg=#609060
hi Special gui=NONE guibg=#eeeef6 guifg=#3f0900
hi SpecialKey gui=NONE guibg=#d8d8df guifg=#ffffff
hi Ignore gui=NONE guibg=#e0e8f0 guifg=#0000ff
hi Folded gui=italic guibg=#c5d3ef guifg=#000000
hi NonText gui=NONE guibg=#b5c3df guifg=#666666
hi LineNr gui=NONE guibg=#eeeef6 guifg=#888888
hi String gui=NONE guibg=#eeeef6 guifg=#DD1144
hi Cursor gui=NONE guibg=#dd0050 guifg=#ffffff
hi CursorLine gui=NONE guibg=#e5f3ff
hi Visual gui=NONE guibg=#b5c3df
hi StatusLine gui=NONE guibg=#000000 guifg=#f0ff60
hi StatusLineNC gui=italic guibg=#304050 guifg=#ffffff
hi TabLine gui=italic guibg=#90A0B0 guifg=#a00040
hi Pmenu gui=NONE guibg=#90A0B0 guifg=#d0e0f0
hi PmenuSel gui=NONE guibg=#B0C0D0 guifg=#ffffe0
hi VertSplit gui=NONE guibg=#b5c3df guifg=#666666
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment