]>
Commit | Line | Data |
---|---|---|
0d23b6e5 BB |
1 | " Vim color file |
2 | " vim: tw=0 ts=4 sw=4 | |
3 | " Maintainer: Thomas R. Kimpton <tomk@emcity.net> | |
4 | " Last Change: 2001 Nov 8 | |
5 | " This color scheme is meant for the person that spends hours | |
6 | " and hours and hours and... in vim and wants some contrast to | |
7 | " help pick things out in the files they edit, but doesn't want | |
8 | " **C**O**N**T**R**A**S**T**! | |
9 | ||
10 | set background=light | |
11 | ||
12 | hi clear | |
13 | ||
14 | if exists("syntax_on") | |
15 | syntax reset | |
16 | endif | |
17 | ||
18 | let colors_name = "fog" | |
19 | ||
20 | hi Normal ctermbg=White ctermfg=Black | |
21 | " 660066 = darkish purple | |
22 | hi Normal guifg=#660066 guibg=grey80 | |
23 | ||
24 | hi NonText term=bold | |
25 | hi NonText ctermfg=LightBlue | |
26 | hi NonText gui=bold guifg=LightBlue guibg=grey80 | |
27 | ||
28 | hi Comment ctermfg=DarkGrey ctermbg=White | |
29 | " 444499 = darkish blue grey | |
30 | hi Comment guifg=#444499 | |
31 | ||
32 | hi Constant term=underline | |
33 | hi Constant ctermfg=Magenta | |
34 | hi Constant guifg=#7070a0 | |
35 | ||
36 | hi Statement term=bold | |
37 | hi Statement cterm=bold ctermfg=DarkGreen ctermbg=White | |
38 | hi Statement guifg=DarkGreen gui=bold | |
39 | ||
40 | hi identifier ctermfg=DarkGreen | |
41 | hi identifier guifg=DarkGreen | |
42 | ||
43 | hi preproc ctermfg=DarkGreen | |
44 | hi preproc guifg=#408040 | |
45 | ||
46 | hi type ctermfg=DarkBlue | |
47 | hi type guifg=DarkBlue | |
48 | ||
49 | hi label ctermfg=yellow | |
50 | hi label guifg=#c06000 | |
51 | ||
52 | hi operator ctermfg=darkYellow | |
53 | hi operator guifg=DarkGreen gui=bold | |
54 | ||
55 | hi StorageClass ctermfg=DarkRed ctermbg=White | |
56 | hi StorageClass guifg=#a02060 gui=bold | |
57 | ||
58 | hi Number ctermfg=Blue ctermbg=White | |
59 | hi Number guifg=Blue | |
60 | ||
61 | hi Special term=bold | |
62 | hi Special ctermfg=LightRed | |
63 | hi Special guifg=#aa8822 | |
64 | ||
65 | hi Cursor ctermbg=DarkMagenta | |
66 | hi Cursor guibg=#880088 guifg=LightGrey | |
67 | ||
68 | hi lCursor guibg=Cyan guifg=Black | |
69 | ||
70 | hi ErrorMsg term=standout | |
71 | hi ErrorMsg ctermbg=DarkRed ctermfg=White | |
72 | hi ErrorMsg guibg=DarkRed guifg=White | |
73 | ||
74 | hi DiffText term=reverse | |
75 | hi DiffText cterm=bold ctermbg=DarkRed | |
76 | hi DiffText gui=bold guibg=DarkRed | |
77 | ||
78 | hi Directory term=bold | |
79 | hi Directory ctermfg=LightRed | |
80 | hi Directory guifg=Red gui=underline | |
81 | ||
82 | hi LineNr term=underline | |
83 | hi LineNr ctermfg=Yellow | |
84 | hi LineNr guifg=#ccaa22 | |
85 | ||
86 | hi MoreMsg term=bold | |
87 | hi MoreMsg ctermfg=LightGreen | |
88 | hi MoreMsg gui=bold guifg=SeaGreen | |
89 | ||
90 | hi Question term=standout | |
91 | hi Question ctermfg=LightGreen | |
92 | hi Question gui=bold guifg=DarkGreen | |
93 | ||
94 | hi Search term=reverse | |
95 | hi Search ctermbg=DarkYellow ctermfg=Black | |
96 | hi Search guibg=#887722 guifg=Black | |
97 | ||
98 | hi SpecialKey term=bold | |
99 | hi SpecialKey ctermfg=LightBlue | |
100 | hi SpecialKey guifg=Blue | |
101 | ||
102 | hi SpecialChar ctermfg=DarkGrey ctermbg=White | |
103 | hi SpecialChar guifg=DarkGrey gui=bold | |
104 | ||
105 | hi Title term=bold | |
106 | hi Title ctermfg=LightMagenta | |
107 | hi Title gui=underline guifg=DarkMagenta | |
108 | ||
109 | hi WarningMsg term=standout | |
110 | hi WarningMsg ctermfg=LightRed | |
111 | hi WarningMsg guifg=DarkBlue guibg=#9999cc | |
112 | ||
113 | hi WildMenu term=standout | |
114 | hi WildMenu ctermbg=Yellow ctermfg=Black | |
115 | hi WildMenu guibg=Yellow guifg=Black gui=underline | |
116 | ||
117 | hi Folded term=standout | |
118 | hi Folded ctermbg=LightGrey ctermfg=DarkBlue | |
119 | hi Folded guibg=LightGrey guifg=DarkBlue | |
120 | ||
121 | hi FoldColumn term=standout | |
122 | hi FoldColumn ctermbg=LightGrey ctermfg=DarkBlue | |
123 | hi FoldColumn guibg=Grey guifg=DarkBlue | |
124 | ||
125 | hi DiffAdd term=bold | |
126 | hi DiffAdd ctermbg=DarkBlue | |
127 | hi DiffAdd guibg=DarkBlue | |
128 | ||
129 | hi DiffChange term=bold | |
130 | hi DiffChange ctermbg=DarkMagenta | |
131 | hi DiffChange guibg=DarkMagenta | |
132 | ||
133 | hi DiffDelete term=bold | |
134 | hi DiffDelete ctermfg=Blue ctermbg=DarkCyan | |
135 | hi DiffDelete gui=bold guifg=Blue guibg=DarkCyan | |
136 | ||
137 | hi Ignore ctermfg=LightGrey | |
138 | hi Ignore guifg=grey90 | |
139 | ||
140 | hi IncSearch term=reverse | |
141 | hi IncSearch cterm=reverse | |
142 | hi IncSearch gui=reverse | |
143 | ||
144 | hi ModeMsg term=bold | |
145 | hi ModeMsg cterm=bold | |
146 | hi ModeMsg gui=bold | |
147 | ||
148 | hi StatusLine term=reverse,bold | |
149 | hi StatusLine cterm=reverse,bold | |
150 | hi StatusLine gui=reverse,bold | |
151 | ||
152 | hi StatusLineNC term=reverse | |
153 | hi StatusLineNC cterm=reverse | |
154 | hi StatusLineNC gui=reverse | |
155 | ||
156 | hi VertSplit term=reverse | |
157 | hi VertSplit cterm=reverse | |
158 | hi VertSplit gui=reverse | |
159 | ||
160 | hi Visual term=reverse | |
161 | hi Visual cterm=reverse | |
162 | hi Visual gui=reverse guifg=DarkGrey guibg=fg | |
163 | ||
164 | hi VisualNOS term=underline,bold | |
165 | hi VisualNOS cterm=underline,bold | |
166 | hi VisualNOS gui=underline,bold | |
167 | ||
168 | hi Todo gui=reverse | |
169 | ||
170 | " vim: sw=2 |