summaryrefslogtreecommitdiffstats
path: root/vim/colors/corn.vim
blob: 64c3fef9413f778b1d062efbf2f1144e98edcb0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
" Vim colorscheme
" Author: Charles <cherry_avium@yahoo.com>
" Version: 0.01
" Date: 07 December 2005

set background=dark
hi clear
if exists("syntax_on")
    syntax reset
endif

" multiple scheme method
" - one for C like language
" - one for markup language
" - one for style language (properties) -> property more outstanding than
"                                          object

let colors_name = "Corn"
" set mouseshape+=i:arrow

" Window elements
hi Cursor                   guifg=#000000 guibg=#F0F0F0
hi Folded                   guifg=#C0C0C0 guibg=#808080
hi LineNr                   guifg=#CCCCCC
hi NonText                  guifg=#CCCCCC
hi Normal                   guifg=#E0E0E0 guibg=#333333
hi StatusLine               guifg=#B8860B guibg=#E5E5E5
hi StatusLineNC             guifg=#C0C0C0 guibg=#000000
hi Visual                   guifg=#C0C0C0 guibg=#000000

" Main groups
hi Comment                  guifg=#BBCCEE
hi Constant                 guifg=#EEDDAA gui=none
hi Statement                guifg=#CCEE00 gui=italic
hi StatementU               guifg=#CCEE00 gui=underline
hi Keyword                  guifg=#CCEE00
hi Underlined               guifg=#E0E0E0 gui=underline
hi Error                    guifg=#FFFFFF guibg=#FF0000

" Tag syntax
hi Attribute                guifg=#CCCCCC gui=italic

hi! link String             Constant
hi! link Character          Constant
hi! link Number             Constant
hi! link Boolean            Constant
hi! link Float              Constant

hi! link Identifier         Normal
hi! link Function           Statement

hi! link Operator           Keyword
hi! link Preproc            Keyword
hi! link Type               Keyword

hi! link Special            Keyword
hi! link Ignore             Normal
hi! link Todo               Error

hi! link Title              Normal 


hi! link phpDefine          StatementU

hi! link HtmlArg            Attribute
hi! link HtmlSpecialChar    Statement

hi! link xmlTagName         Keyword
hi! link xmlEndTag          Keyword
hi! link xmlEntity          Statement
hi! link xmlCData           Comment
hi! link xmlAttrib          Attribute