blob: e516fbc7479b976dd9c0b7c3d53ad09d6947e1eb (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
" Vim color file
" Maintainer: mdelliot
" Last Change: $Date: 2005-09-23 08:53:22 -0700 (Fri, 23 Sep 2005) $
" Revsision: $Revision: 38 $
" Version: 0.2
" Info: Adobe theme, easy on eyes.
"
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Philosophy:
"
" - Nothing should be bold unless it's very important and should stand
" out above all other things. Functions/Classes are good for this.
"
" - Colors should be easy on eyes to stare at for many hours.
"
" - Todos should stand out just a little (underline looks nice).
"
" - Comments should be stand out less than anything else.
"
" - Strings should be a beautiful color since much documentation should
" exist in source code as strings (think """ comments in python or /**
" in java).
"
" - Normal text should be colored either black or white so it is obvious
" if something is not recognized syntax.
"
" - No two used colors should be highly similar.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "adobe"
"hi Normal guibg=#a0a087 ctermbg=black
" Cursor
hi Cursor guibg=Yellow guifg=NONE ctermfg=NONE ctermbg=yellow
" Search
hi Search guibg=green ctermfg=green
" Fold
hi Folded guibg=#a0a087
" Split area
hi StatusLine gui=reverse guibg=white
" Messages
hi ModeMsg gui=none
hi MoreMsg gui=reverse
hi Question gui=NONE guifg=#ffff60 guibg=NONE
" Other
hi Todo gui=underline guifg=white guibg=NONE cterm=bold,underline ctermbg=NONE
hi NonText guifg=blue ctermfg=darkblue
hi VisualNOS gui=underline
hi Title gui=none
" Diff
hi DiffDelete gui=none
hi DiffText gui=none
" Html
hi htmlBoldUnderline gui=underline
hi htmlBold gui=none
hi htmlBoldItalic gui=none
hi htmlBoldUnderlineItalic gui=underline
" Syntax group
hi Comment guifg=darkgrey gui=reverse ctermfg=darkgrey
hi Statement guifg=orange4 gui=none ctermfg=brown
hi Type guifg=#22229a gui=none ctermfg=yellow
hi String guifg=#005522 ctermfg=darkgreen
hi PreProc guifg=#0066ff ctermfg=darkcyan
hi Special guifg=purple3 ctermfg=darkmagenta
hi Constant guifg=red4 ctermfg=darkred
hi Identifier guifg=red ctermfg=red
hi Function guifg=darkred gui=bold ctermfg=magenta
hi Underlined guifg=yellow ctermfg=yellow
" OLD ATTEMPTS
"hi Normal guibg=#b0b097 ctermbg=black
"hi String guifg=#0099aa ctermfg=brown
"hi String guifg=#0055dd ctermfg=brown
"hi Special guifg=darkblue ctermfg=none
|