]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/colors/cleanphp.vim
Turn off the blur
[rbdr/dotfiles] / vim / colors / cleanphp.vim
CommitLineData
0d23b6e5
BB
1" Vim color file
2" Maintainer: Billy McIntosh <billymcintosh@ntlworld.com>
3" Last Change: June 24, 2003
4" Licence: Public Domain
5
6" This package offers a eye-catching color scheme for PHP syntax
7
8" First remove all existing highlighting.
9set background=dark
10hi clear
11if exists("syntax_on")
12 syntax reset
13endif
14
15let colors_name = "cleanphp"
16
17hi Normal guifg=#008000 guibg=#d3e4f8
18
19hi ErrorMsg guibg=#d3e4f8 guifg=Red
20hi IncSearch gui=reverse
21hi ModeMsg gui=bold
22hi StatusLine gui=reverse,bold
23hi StatusLineNC gui=reverse
24hi VertSplit gui=reverse
25hi Visual gui=reverse guifg=#c0c0c0 guibg=fg
26hi VisualNOS gui=underline,bold
27hi DiffText gui=bold guibg=Red
28hi Cursor guibg=Black guifg=NONE
29hi lCursor guibg=Black guifg=NONE
30hi Directory guifg=#ff8040
31hi LineNr guifg=#008000
32hi MoreMsg gui=bold guifg=SeaGreen
33hi NonText gui=bold guifg=#ff8040 guibg=#d3e4f8
34hi Question gui=bold guifg=Black
35hi Search guibg=#008000 guifg=NONE
36hi SpecialKey guifg=#ff8040
37hi Title gui=bold guifg=Magenta
38hi WarningMsg guifg=Red
39hi WildMenu guibg=Cyan guifg=#d3e4f8
40hi Folded guibg=White guifg=Darkblue
41hi FoldColumn guibg=#c0c0c0 guifg=Darkblue
42hi DiffAdd guibg=Lightblue
43hi DiffChange guibg=LightMagenta
44hi DiffDelete gui=bold guifg=#ff8040 guibg=LightCyan
45
46hi Comment guifg=#ff8040 guibg=#d3e4f8
47hi Constant guifg=#BB0000 guibg=#d3e4f8
48hi PreProc guifg=#008080 guibg=#d3e4f8
49hi Statement gui=NONE guifg=#008000 guibg=#d3e4f8
50hi Special guifg=#008080 guibg=#d3e4f8
51hi Ignore guifg=#c0c0c0
52hi Identifier guifg=#000080 guibg=#d3e4f8
53hi Type guifg=#00BB00 guibg=#d3e4f8
54
55hi link IncSearch Visual
56hi link String Constant
57hi link Character Constant
58hi link Number Constant
59hi link Boolean Constant
60hi link Float Number
61hi link Function Identifier
62hi link Conditional Statement
63hi link Repeat Statement
64hi link Label Statement
65hi link Operator Statement
66hi link Keyword Statement
67hi link Exception Statement
68hi link Include PreProc
69hi link Define PreProc
70hi link Macro PreProc
71hi link PreCondit PreProc
72hi link StorageClass Type
73hi link Structure Type
74hi link Typedef Type
75hi link Tag Special
76hi link SpecialChar Special
77hi link Delimiter Special
78hi link SpecialComment Special
79hi link Debug Special
80
81" vim: sw=2