Skip to content

Instantly share code, notes, and snippets.

@topfunky
Created June 3, 2010 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save topfunky/424448 to your computer and use it in GitHub Desktop.
Save topfunky/424448 to your computer and use it in GitHub Desktop.
" Vim color file
" Maintainer: Geoffrey Grosenbach <boss@topfunky.com>
" Last Change: 2010 June 3
" License: Public Domain
" A color theme with a white background. Modified from an existing theme.
"
" It's supposed to look like the Emacs standard colors, at least
" for C. But Emacs has different categories, so it's not very good.
" First remove all existing highlighting.
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "topfunky-light"
hi Normal guifg=#222222 guibg=White
" Groups used in the 'highlight' and 'guicursor' options default value.
hi ErrorMsg guibg=Red guifg=White
hi IncSearch gui=reverse
hi ModeMsg gui=bold
hi StatusLine gui=reverse,bold guifg=#bbbbbb
hi StatusLineNC gui=reverse
hi VertSplit gui=reverse
hi Visual gui=reverse guifg=#eeeeee guibg=fg
hi VisualNOS gui=underline,bold
hi DiffText gui=bold guibg=Red
hi Cursor guibg=Black guifg=#cccccc
hi lCursor guibg=Cyan guifg=NONE
hi Directory guifg=Blue
hi LineNr guifg=#dddddd
hi MoreMsg gui=bold guifg=SeaGreen
hi NonText gui=bold guifg=Blue guibg=grey90
hi Question gui=bold guifg=SeaGreen
hi Search guibg=#dddddd guifg=NONE
hi SpecialKey guifg=Blue
hi Title gui=bold guifg=Magenta
hi WarningMsg guifg=Red
hi WildMenu guibg=Yellow guifg=Black
hi Folded guibg=White guifg=DarkBlue
hi FoldColumn guibg=Grey guifg=DarkBlue
hi DiffAdd guibg=LightBlue
hi DiffChange guibg=LightMagenta
hi DiffDelete gui=bold guifg=Blue guibg=LightCyan
" Colors for syntax highlighting
hi Comment guifg=#aaaaaa guibg=White
hi Constant guifg=#0000ff guibg=White
hi PreProc guifg=#c6522b guibg=White
hi Statement gui=NONE guifg=#52c62b guibg=White
hi Type guifg=#522bc6 guibg=White
hi Special guifg=SlateBlue guibg=White
hi Ignore guifg=White
" Some specials (override hilinks)
" vim: sw=2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment