forked from ma6174/vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Light.vim
152 lines (85 loc) · 2.5 KB
/
Light.vim
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
"A lighter color scheme, with a font that looks good bold.
" Restore default colors
hi clear
set background=light
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "Light"
" These are pretty good on grey75:
" yellow4
" rosybrown4
" burlywood4
" DeepPink4
" HotPink4
hi Cursor guibg=IndianRed
hi Normal guibg=grey78 guifg=black
hi NonText guibg=grey75
hi Visual guibg=palegreen3 guifg=fg gui=NONE
hi Search guibg=LightBlue
hi IncSearch guibg=yellow2 guifg=fg gui=none
hi WarningMsg guibg=white guifg=red3 gui=bold
"
" Brown / Tan
"
"
" Red
"
"hi Function guifg=firebrick gui=NONE
"hi PreProc guifg=MidnightBlue gui=NONE
"hi PreProc guifg=HotPink4 gui=bold
hi PreProc guifg=DeepPink4 gui=none
"
" Green
"
"hi Comment guifg=DarkOrange4 gui=NONE
hi Comment guifg=#005500 gui=none
"
" Yellow
"
"
" Blue
"
hi Identifier guifg=blue3 gui=NONE
"hi Function gui=bold guifg=grey40
hi Function gui=none guifg=MidnightBlue
"hi Statement guifg=black gui=bold
hi Statement guifg=MidnightBlue gui=bold
"
" Purple
"
"hi Type guifg=DarkViolet gui=NONE
"hi Type guifg=#5D06AD gui=NONE
hi Type guifg=#6D16BD gui=NONE
"hi Constant guifg=magenta3 gui=none
"hi Constant guifg=#AD00AD gui=none
hi Constant guifg=#BD00BD gui=none
"
" Cyan
"
"hi Constant guifg=SteelBlue gui=NONE
"hi Constant guifg=DodgerBlue4 gui=NONE
hi Special guifg=DodgerBlue4 gui=NONE
"
" Orange
"
"hi String guifg=DarkGreen gui=bold
"hi String guifg=#005500 gui=none
" the special char color blended too easily w/ the green string.
hi String guifg=darkorange4 gui=none
" Misc
hi! link SpecialKey Identifier
hi! link Directory Identifier
" Swapped these because orange4 and VioletRed4/DeepPink4 look to close right
" next to each other. But then, I think I prefer green comments... :) and
"hi Comment guifg=darkorange4 gui=none
";; Ediff faces that preserve some of the syntax highlighting w/in each diff
";; segment. See "M-x,apropos,defface" for settable attributes.
"'(ediff-fine-diff-face-B ((t (:background "MediumTurquoise"))))
"'(ediff-current-diff-face-B ((t (:background "Khaki"))))
"'(ediff-even-diff-face-Ancestor ((t (:background "DarkGrey"))))
"'(ediff-even-diff-face-A ((t (:background "DarkGrey"))))
"'(ediff-even-diff-face-B ((t (:background "DarkGrey"))))
"'(ediff-odd-diff-face-A ((t (:background "DarkGrey"))))
"'(ediff-odd-diff-face-Ancestor ((t (:background "DarkGrey"))))
"'(ediff-odd-diff-face-B ((t (:background "DarkGrey"))))