]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/colors/fog.vim
Turn off the blur
[rbdr/dotfiles] / vim / colors / fog.vim
CommitLineData
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
10set background=light
11
12hi clear
13
14if exists("syntax_on")
15 syntax reset
16endif
17
18let colors_name = "fog"
19
20hi Normal ctermbg=White ctermfg=Black
21" 660066 = darkish purple
22hi Normal guifg=#660066 guibg=grey80
23
24hi NonText term=bold
25hi NonText ctermfg=LightBlue
26hi NonText gui=bold guifg=LightBlue guibg=grey80
27
28hi Comment ctermfg=DarkGrey ctermbg=White
29" 444499 = darkish blue grey
30hi Comment guifg=#444499
31
32hi Constant term=underline
33hi Constant ctermfg=Magenta
34hi Constant guifg=#7070a0
35
36hi Statement term=bold
37hi Statement cterm=bold ctermfg=DarkGreen ctermbg=White
38hi Statement guifg=DarkGreen gui=bold
39
40hi identifier ctermfg=DarkGreen
41hi identifier guifg=DarkGreen
42
43hi preproc ctermfg=DarkGreen
44hi preproc guifg=#408040
45
46hi type ctermfg=DarkBlue
47hi type guifg=DarkBlue
48
49hi label ctermfg=yellow
50hi label guifg=#c06000
51
52hi operator ctermfg=darkYellow
53hi operator guifg=DarkGreen gui=bold
54
55hi StorageClass ctermfg=DarkRed ctermbg=White
56hi StorageClass guifg=#a02060 gui=bold
57
58hi Number ctermfg=Blue ctermbg=White
59hi Number guifg=Blue
60
61hi Special term=bold
62hi Special ctermfg=LightRed
63hi Special guifg=#aa8822
64
65hi Cursor ctermbg=DarkMagenta
66hi Cursor guibg=#880088 guifg=LightGrey
67
68hi lCursor guibg=Cyan guifg=Black
69
70hi ErrorMsg term=standout
71hi ErrorMsg ctermbg=DarkRed ctermfg=White
72hi ErrorMsg guibg=DarkRed guifg=White
73
74hi DiffText term=reverse
75hi DiffText cterm=bold ctermbg=DarkRed
76hi DiffText gui=bold guibg=DarkRed
77
78hi Directory term=bold
79hi Directory ctermfg=LightRed
80hi Directory guifg=Red gui=underline
81
82hi LineNr term=underline
83hi LineNr ctermfg=Yellow
84hi LineNr guifg=#ccaa22
85
86hi MoreMsg term=bold
87hi MoreMsg ctermfg=LightGreen
88hi MoreMsg gui=bold guifg=SeaGreen
89
90hi Question term=standout
91hi Question ctermfg=LightGreen
92hi Question gui=bold guifg=DarkGreen
93
94hi Search term=reverse
95hi Search ctermbg=DarkYellow ctermfg=Black
96hi Search guibg=#887722 guifg=Black
97
98hi SpecialKey term=bold
99hi SpecialKey ctermfg=LightBlue
100hi SpecialKey guifg=Blue
101
102hi SpecialChar ctermfg=DarkGrey ctermbg=White
103hi SpecialChar guifg=DarkGrey gui=bold
104
105hi Title term=bold
106hi Title ctermfg=LightMagenta
107hi Title gui=underline guifg=DarkMagenta
108
109hi WarningMsg term=standout
110hi WarningMsg ctermfg=LightRed
111hi WarningMsg guifg=DarkBlue guibg=#9999cc
112
113hi WildMenu term=standout
114hi WildMenu ctermbg=Yellow ctermfg=Black
115hi WildMenu guibg=Yellow guifg=Black gui=underline
116
117hi Folded term=standout
118hi Folded ctermbg=LightGrey ctermfg=DarkBlue
119hi Folded guibg=LightGrey guifg=DarkBlue
120
121hi FoldColumn term=standout
122hi FoldColumn ctermbg=LightGrey ctermfg=DarkBlue
123hi FoldColumn guibg=Grey guifg=DarkBlue
124
125hi DiffAdd term=bold
126hi DiffAdd ctermbg=DarkBlue
127hi DiffAdd guibg=DarkBlue
128
129hi DiffChange term=bold
130hi DiffChange ctermbg=DarkMagenta
131hi DiffChange guibg=DarkMagenta
132
133hi DiffDelete term=bold
134hi DiffDelete ctermfg=Blue ctermbg=DarkCyan
135hi DiffDelete gui=bold guifg=Blue guibg=DarkCyan
136
137hi Ignore ctermfg=LightGrey
138hi Ignore guifg=grey90
139
140hi IncSearch term=reverse
141hi IncSearch cterm=reverse
142hi IncSearch gui=reverse
143
144hi ModeMsg term=bold
145hi ModeMsg cterm=bold
146hi ModeMsg gui=bold
147
148hi StatusLine term=reverse,bold
149hi StatusLine cterm=reverse,bold
150hi StatusLine gui=reverse,bold
151
152hi StatusLineNC term=reverse
153hi StatusLineNC cterm=reverse
154hi StatusLineNC gui=reverse
155
156hi VertSplit term=reverse
157hi VertSplit cterm=reverse
158hi VertSplit gui=reverse
159
160hi Visual term=reverse
161hi Visual cterm=reverse
162hi Visual gui=reverse guifg=DarkGrey guibg=fg
163
164hi VisualNOS term=underline,bold
165hi VisualNOS cterm=underline,bold
166hi VisualNOS gui=underline,bold
167
168hi Todo gui=reverse
169
170" vim: sw=2