0
|
1 " Vim color file
|
|
2 " Maintainer: Ian Langworth
|
|
3 " Last Change: 2004 Dec 24
|
|
4 " Email: <langworth.com>
|
|
5
|
|
6 " Color settings inspired by BBEdit for Mac OS, plus I liked
|
|
7 " the low-contrast comments from the 'oceandeep' colorscheme
|
|
8
|
|
9 set background=light
|
|
10 hi clear
|
|
11 if exists("syntax_on")
|
|
12 syntax reset
|
|
13 endif
|
|
14 let g:colors_name="tolerable"
|
|
15
|
|
16 hi Cursor guifg=white guibg=darkgreen
|
|
17
|
|
18 hi Normal gui=none guifg=black guibg=white
|
|
19 hi NonText gui=none guifg=orange guibg=white
|
|
20
|
|
21 hi Statement gui=none guifg=blue
|
|
22 hi Special gui=none guifg=red
|
|
23 hi Constant gui=none guifg=darkred
|
|
24 hi Comment gui=none guifg=#555555
|
|
25 hi Preproc gui=none guifg=darkcyan
|
|
26 hi Type gui=none guifg=darkmagenta
|
|
27 hi Identifier gui=none guifg=darkgreen
|
|
28 hi Title gui=none guifg=black
|
|
29
|
|
30 hi StatusLine gui=none guibg=#333333 guifg=white
|
|
31 hi StatusLineNC gui=none guibg=#333333 guifg=white
|
|
32 hi VertSplit gui=none guibg=#333333 guifg=white
|
|
33
|
|
34 hi Visual gui=none guibg=green guifg=black
|
|
35 hi Search gui=none guibg=yellow
|
|
36 hi Directory gui=none guifg=darkblue
|
|
37 hi WarningMsg gui=none guifg=red
|
|
38 hi Error gui=none guifg=white guibg=red
|
|
39 hi Todo gui=none guifg=black guibg=yellow
|
|
40
|
|
41 hi MoreMsg gui=none
|
|
42 hi ModeMsg gui=none
|
|
43
|