]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/colors/biogoo.vim
Turn off the blur
[rbdr/dotfiles] / vim / colors / biogoo.vim
CommitLineData
0d23b6e5
BB
1" Vim color File
2" Name: biogoo
3" Maintainer: Benjamin Esham <bdesham@gmail.com>
4" Last Change: 2006-11-20
5" Version: 1.5
6"
7" Colorful text on a light gray background. It's pretty easy on the eyes in
8" my opinion. Any feedback is greatly appreciated!
9"
10" Installation:
11" Copy to ~/.vim/colors; do :color biogoo
12"
13" Customization Options:
14" Use a 'normal' cursor color:
15" let g:biogoo_normal_cursor = 1
16"
17" Props:
18" Jani Nurminen's zenburn.vim as an example file.
19" Scott F. and Matt F. for feature suggestions.
20" Bill McCarthy for his Vim mailing list post about Vim 7 support.
21"
22" Version History:
23" 1.5: should fully support Vim 7 now
24" 1.4: more support for Vim 7: added the `MatchParen' group for ()[]{} matching
25" 1.3: added support for Vim 7: added groups for the new spellchecking, and
26" added a conditional to display Visual mode correctly in any version.
27" 1.2: added `SpellErrors' group for use with vimspell.
28" 1.1: added `IncSearch' group for improved visibility in incremental searches.
29" 1.0: minor tweaks
30" 0.95: initial release
31"
32" TODO: Add new groups as needed. E-mail me with any suggestions!
33
34set background=light
35hi clear
36if exists("syntax_on")
37 syntax reset
38endif
39let g:colors_name = "biogoo"
40
41hi Comment guifg=#0000c3
42hi Constant guifg=#0000ff
43hi CursorColumn guibg=#ffffff
44hi CursorLine guibg=#ffffff
45hi Delimiter guifg=#00007f
46hi DiffAdd guifg=#007f00 guibg=#e5e5e5
47hi DiffChange guifg=#00007f guibg=#e5e5e5
48hi DiffDelete guifg=#7f0000 guibg=#e5e5e5
49hi DiffText guifg=#ee0000 guibg=#e5e5e5
50hi Directory guifg=#b85d00
51hi Error guifg=#d6d6d6 guibg=#7f0000
52hi ErrorMsg guifg=#ffffff guibg=#ff0000 gui=bold
53hi Float guifg=#b85d00
54hi FoldColumn guifg=#00007f guibg=#e5e5e5
55hi Folded guifg=#00007f guibg=#e5e5e5
56hi Function guifg=#7f0000
57hi Identifier guifg=#004000
58hi Include guifg=#295498 gui=bold
59hi IncSearch guifg=#ffffff guibg=#0000ff gui=bold
60hi LineNr guifg=#303030 guibg=#e5e5e5 gui=underline
61hi Keyword guifg=#00007f
62hi Macro guifg=#295498
63hi MatchParen guifg=#ffffff guibg=#00a000
64hi ModeMsg guifg=#00007f
65hi MoreMsg guifg=#00007f
66hi NonText guifg=#007f00
67hi Normal guifg=#000000 guibg=#d6d6d6
68hi Number guifg=#b85d00
69hi Operator guifg=#00007f
70hi Pmenu guifg=#000000 guibg=#cc9999
71hi PmenuSel guifg=#ffffff guibg=#993333
72hi PmenuSbar guibg=#99cc99
73hi PmenuThumb guifg=#339933
74hi PreCondit guifg=#295498 gui=bold
75hi PreProc guifg=#0c3b6b gui=bold
76hi Question guifg=#00007f
77hi Search guibg=#ffff00
78hi Special guifg=#007f00
79hi SpecialKey guifg=#00007f
80hi SpellBad guifg=#ffffff guibg=#7f0000 gui=undercurl guisp=#d6d6d6
81hi SpellCap guifg=#ffffff guibg=#7f007f gui=undercurl guisp=#d6d6d6
82hi SpellLocal guifg=#ffffff guibg=#007f7f gui=undercurl guisp=#d6d6d6
83hi SpellRare guifg=#ffffff guibg=#b85d00 gui=undercurl guisp=#d6d6d6
84hi Statement guifg=#00007f gui=none
85hi StatusLine guifg=#00007f guibg=#ffffff
86hi StatusLineNC guifg=#676767 guibg=#ffffff
87hi String guifg=#d10000
88hi TabLine guifg=#222222 guibg=#d6d6d6
89hi TabLineFill guifg=#d6d6d6
90hi TabLineSel guifg=#00007f guibg=#eeeeee gui=bold
91hi Title guifg=#404040 gui=bold
92hi Todo guifg=#00007f guibg=#e5e5e5 gui=underline
93hi Type guifg=#540054 gui=bold
94hi Underlined guifg=#b85d00
95hi VertSplit guifg=#676767 guibg=#ffffff
96if version < 700
97 hi Visual guifg=#7f7f7f guibg=#ffffff
98else
99 hi Visual guifg=#ffffff guibg=#7f7f7f
100endif
101hi VisualNOS guifg=#007f00 guibg=#e5e5e5
102hi WarningMsg guifg=#500000
103hi WildMenu guifg=#540054
104
105" Non-standard highlighting (e.g. for plugins)
106
107" vimspell
108hi SpellErrors guifg=#ffffff guibg=#7f0000 gui=undercurl guisp=#d6d6d6
109
110if !exists("g:biogoo_normal_cursor")
111 " use a gray-on-blue cursor
112 hi Cursor guifg=#ffffff guibg=#00007f
113endif
114
115" vim:noet:ts=4 sw=4