line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Graphics::ColorNames::X; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: X-Windows color names and equivalent RGB values |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
6
|
4
|
|
|
4
|
|
2565
|
use strict; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
121
|
|
7
|
4
|
|
|
4
|
|
42
|
use warnings; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
209
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $VERSION = 'v3.3.4'; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
sub NamesRgbTable() { |
13
|
4
|
|
|
4
|
|
452
|
use integer; |
|
4
|
|
|
|
|
21
|
|
|
4
|
|
|
|
|
26
|
|
14
|
|
|
|
|
|
|
return { |
15
|
7
|
|
|
7
|
0
|
1944
|
"snow" => 0xfffafa, |
16
|
|
|
|
|
|
|
"ghostwhite" => 0xf8f8ff, |
17
|
|
|
|
|
|
|
"whitesmoke" => 0xf5f5f5, |
18
|
|
|
|
|
|
|
"gainsboro" => 0xdcdcdc, |
19
|
|
|
|
|
|
|
"floralwhite" => 0xfffaf0, |
20
|
|
|
|
|
|
|
"oldlace" => 0xfdf5e6, |
21
|
|
|
|
|
|
|
"linen" => 0xfaf0e6, |
22
|
|
|
|
|
|
|
"antiquewhite" => 0xfaebd7, |
23
|
|
|
|
|
|
|
"papayawhip" => 0xffefd5, |
24
|
|
|
|
|
|
|
"blanchedalmond" => 0xffebcd, |
25
|
|
|
|
|
|
|
"bisque" => 0xffe4c4, |
26
|
|
|
|
|
|
|
"peachpuff" => 0xffdab9, |
27
|
|
|
|
|
|
|
"navajowhite" => 0xffdead, |
28
|
|
|
|
|
|
|
"moccasin" => 0xffe4b5, |
29
|
|
|
|
|
|
|
"cornsilk" => 0xfff8dc, |
30
|
|
|
|
|
|
|
"ivory" => 0xfffff0, |
31
|
|
|
|
|
|
|
"lemonchiffon" => 0xfffacd, |
32
|
|
|
|
|
|
|
"seashell" => 0xfff5ee, |
33
|
|
|
|
|
|
|
"honeydew" => 0xf0fff0, |
34
|
|
|
|
|
|
|
"mintcream" => 0xf5fffa, |
35
|
|
|
|
|
|
|
"azure" => 0xf0ffff, |
36
|
|
|
|
|
|
|
"aliceblue" => 0xf0f8ff, |
37
|
|
|
|
|
|
|
"lavender" => 0xe6e6fa, |
38
|
|
|
|
|
|
|
"lavenderblush" => 0xfff0f5, |
39
|
|
|
|
|
|
|
"mistyrose" => 0xffe4e1, |
40
|
|
|
|
|
|
|
"white" => 0xffffff, |
41
|
|
|
|
|
|
|
"black" => 0x000000, |
42
|
|
|
|
|
|
|
"darkslategray" => 0x2f4f4f, |
43
|
|
|
|
|
|
|
"darkslategrey" => 0x2f4f4f, |
44
|
|
|
|
|
|
|
"dimgray" => 0x696969, |
45
|
|
|
|
|
|
|
"dimgrey" => 0x696969, |
46
|
|
|
|
|
|
|
"slategray" => 0x708090, |
47
|
|
|
|
|
|
|
"slategrey" => 0x708090, |
48
|
|
|
|
|
|
|
"lightslategray" => 0x778899, |
49
|
|
|
|
|
|
|
"lightslategrey" => 0x778899, |
50
|
|
|
|
|
|
|
"gray" => 0xbebebe, |
51
|
|
|
|
|
|
|
"grey" => 0xbebebe, |
52
|
|
|
|
|
|
|
"x11gray" => 0xbebebe, |
53
|
|
|
|
|
|
|
"x11grey" => 0xbebebe, |
54
|
|
|
|
|
|
|
"webgray" => 0x808080, |
55
|
|
|
|
|
|
|
"webgrey" => 0x808080, |
56
|
|
|
|
|
|
|
"lightgrey" => 0xd3d3d3, |
57
|
|
|
|
|
|
|
"lightgray" => 0xd3d3d3, |
58
|
|
|
|
|
|
|
"midnightblue" => 0x191970, |
59
|
|
|
|
|
|
|
"navy" => 0x000080, |
60
|
|
|
|
|
|
|
"navyblue" => 0x000080, |
61
|
|
|
|
|
|
|
"cornflowerblue" => 0x6495ed, |
62
|
|
|
|
|
|
|
"darkslateblue" => 0x483d8b, |
63
|
|
|
|
|
|
|
"slateblue" => 0x6a5acd, |
64
|
|
|
|
|
|
|
"mediumslateblue" => 0x7b68ee, |
65
|
|
|
|
|
|
|
"lightslateblue" => 0x8470ff, |
66
|
|
|
|
|
|
|
"mediumblue" => 0x0000cd, |
67
|
|
|
|
|
|
|
"royalblue" => 0x4169e1, |
68
|
|
|
|
|
|
|
"blue" => 0x0000ff, |
69
|
|
|
|
|
|
|
"dodgerblue" => 0x1e90ff, |
70
|
|
|
|
|
|
|
"deepskyblue" => 0x00bfff, |
71
|
|
|
|
|
|
|
"skyblue" => 0x87ceeb, |
72
|
|
|
|
|
|
|
"lightskyblue" => 0x87cefa, |
73
|
|
|
|
|
|
|
"steelblue" => 0x4682b4, |
74
|
|
|
|
|
|
|
"lightsteelblue" => 0xb0c4de, |
75
|
|
|
|
|
|
|
"lightblue" => 0xadd8e6, |
76
|
|
|
|
|
|
|
"powderblue" => 0xb0e0e6, |
77
|
|
|
|
|
|
|
"paleturquoise" => 0xafeeee, |
78
|
|
|
|
|
|
|
"darkturquoise" => 0x00ced1, |
79
|
|
|
|
|
|
|
"mediumturquoise" => 0x48d1cc, |
80
|
|
|
|
|
|
|
"turquoise" => 0x40e0d0, |
81
|
|
|
|
|
|
|
"cyan" => 0x00ffff, |
82
|
|
|
|
|
|
|
"aqua" => 0x00ffff, |
83
|
|
|
|
|
|
|
"lightcyan" => 0xe0ffff, |
84
|
|
|
|
|
|
|
"cadetblue" => 0x5f9ea0, |
85
|
|
|
|
|
|
|
"mediumaquamarine" => 0x66cdaa, |
86
|
|
|
|
|
|
|
"aquamarine" => 0x7fffd4, |
87
|
|
|
|
|
|
|
"darkgreen" => 0x006400, |
88
|
|
|
|
|
|
|
"darkolivegreen" => 0x556b2f, |
89
|
|
|
|
|
|
|
"darkseagreen" => 0x8fbc8f, |
90
|
|
|
|
|
|
|
"seagreen" => 0x2e8b57, |
91
|
|
|
|
|
|
|
"mediumseagreen" => 0x3cb371, |
92
|
|
|
|
|
|
|
"lightseagreen" => 0x20b2aa, |
93
|
|
|
|
|
|
|
"palegreen" => 0x98fb98, |
94
|
|
|
|
|
|
|
"springgreen" => 0x00ff7f, |
95
|
|
|
|
|
|
|
"lawngreen" => 0x7cfc00, |
96
|
|
|
|
|
|
|
"green" => 0x00ff00, |
97
|
|
|
|
|
|
|
"lime" => 0x00ff00, |
98
|
|
|
|
|
|
|
"x11green" => 0x00ff00, |
99
|
|
|
|
|
|
|
"webgreen" => 0x008000, |
100
|
|
|
|
|
|
|
"chartreuse" => 0x7fff00, |
101
|
|
|
|
|
|
|
"mediumspringgreen" => 0x00fa9a, |
102
|
|
|
|
|
|
|
"greenyellow" => 0xadff2f, |
103
|
|
|
|
|
|
|
"limegreen" => 0x32cd32, |
104
|
|
|
|
|
|
|
"yellowgreen" => 0x9acd32, |
105
|
|
|
|
|
|
|
"forestgreen" => 0x228b22, |
106
|
|
|
|
|
|
|
"olivedrab" => 0x6b8e23, |
107
|
|
|
|
|
|
|
"darkkhaki" => 0xbdb76b, |
108
|
|
|
|
|
|
|
"khaki" => 0xf0e68c, |
109
|
|
|
|
|
|
|
"palegoldenrod" => 0xeee8aa, |
110
|
|
|
|
|
|
|
"lightgoldenrodyellow" => 0xfafad2, |
111
|
|
|
|
|
|
|
"lightyellow" => 0xffffe0, |
112
|
|
|
|
|
|
|
"yellow" => 0xffff00, |
113
|
|
|
|
|
|
|
"gold" => 0xffd700, |
114
|
|
|
|
|
|
|
"lightgoldenrod" => 0xeedd82, |
115
|
|
|
|
|
|
|
"goldenrod" => 0xdaa520, |
116
|
|
|
|
|
|
|
"darkgoldenrod" => 0xb8860b, |
117
|
|
|
|
|
|
|
"rosybrown" => 0xbc8f8f, |
118
|
|
|
|
|
|
|
"indianred" => 0xcd5c5c, |
119
|
|
|
|
|
|
|
"saddlebrown" => 0x8b4513, |
120
|
|
|
|
|
|
|
"sienna" => 0xa0522d, |
121
|
|
|
|
|
|
|
"peru" => 0xcd853f, |
122
|
|
|
|
|
|
|
"burlywood" => 0xdeb887, |
123
|
|
|
|
|
|
|
"beige" => 0xf5f5dc, |
124
|
|
|
|
|
|
|
"wheat" => 0xf5deb3, |
125
|
|
|
|
|
|
|
"sandybrown" => 0xf4a460, |
126
|
|
|
|
|
|
|
"tan" => 0xd2b48c, |
127
|
|
|
|
|
|
|
"chocolate" => 0xd2691e, |
128
|
|
|
|
|
|
|
"firebrick" => 0xb22222, |
129
|
|
|
|
|
|
|
"brown" => 0xa52a2a, |
130
|
|
|
|
|
|
|
"darksalmon" => 0xe9967a, |
131
|
|
|
|
|
|
|
"salmon" => 0xfa8072, |
132
|
|
|
|
|
|
|
"lightsalmon" => 0xffa07a, |
133
|
|
|
|
|
|
|
"orange" => 0xffa500, |
134
|
|
|
|
|
|
|
"darkorange" => 0xff8c00, |
135
|
|
|
|
|
|
|
"coral" => 0xff7f50, |
136
|
|
|
|
|
|
|
"lightcoral" => 0xf08080, |
137
|
|
|
|
|
|
|
"tomato" => 0xff6347, |
138
|
|
|
|
|
|
|
"orangered" => 0xff4500, |
139
|
|
|
|
|
|
|
"red" => 0xff0000, |
140
|
|
|
|
|
|
|
"hotpink" => 0xff69b4, |
141
|
|
|
|
|
|
|
"deeppink" => 0xff1493, |
142
|
|
|
|
|
|
|
"pink" => 0xffc0cb, |
143
|
|
|
|
|
|
|
"lightpink" => 0xffb6c1, |
144
|
|
|
|
|
|
|
"palevioletred" => 0xdb7093, |
145
|
|
|
|
|
|
|
"maroon" => 0xb03060, |
146
|
|
|
|
|
|
|
"x11maroon" => 0xb03060, |
147
|
|
|
|
|
|
|
"webmaroon" => 0x800000, |
148
|
|
|
|
|
|
|
"mediumvioletred" => 0xc71585, |
149
|
|
|
|
|
|
|
"violetred" => 0xd02090, |
150
|
|
|
|
|
|
|
"magenta" => 0xff00ff, |
151
|
|
|
|
|
|
|
"fuchsia" => 0xff00ff, |
152
|
|
|
|
|
|
|
"violet" => 0xee82ee, |
153
|
|
|
|
|
|
|
"plum" => 0xdda0dd, |
154
|
|
|
|
|
|
|
"orchid" => 0xda70d6, |
155
|
|
|
|
|
|
|
"mediumorchid" => 0xba55d3, |
156
|
|
|
|
|
|
|
"darkorchid" => 0x9932cc, |
157
|
|
|
|
|
|
|
"darkviolet" => 0x9400d3, |
158
|
|
|
|
|
|
|
"blueviolet" => 0x8a2be2, |
159
|
|
|
|
|
|
|
"purple" => 0xa020f0, |
160
|
|
|
|
|
|
|
"x11purple" => 0xa020f0, |
161
|
|
|
|
|
|
|
"webpurple" => 0x800080, |
162
|
|
|
|
|
|
|
"mediumpurple" => 0x9370db, |
163
|
|
|
|
|
|
|
"thistle" => 0xd8bfd8, |
164
|
|
|
|
|
|
|
"snow1" => 0xfffafa, |
165
|
|
|
|
|
|
|
"snow2" => 0xeee9e9, |
166
|
|
|
|
|
|
|
"snow3" => 0xcdc9c9, |
167
|
|
|
|
|
|
|
"snow4" => 0x8b8989, |
168
|
|
|
|
|
|
|
"seashell1" => 0xfff5ee, |
169
|
|
|
|
|
|
|
"seashell2" => 0xeee5de, |
170
|
|
|
|
|
|
|
"seashell3" => 0xcdc5bf, |
171
|
|
|
|
|
|
|
"seashell4" => 0x8b8682, |
172
|
|
|
|
|
|
|
"antiquewhite1" => 0xffefdb, |
173
|
|
|
|
|
|
|
"antiquewhite2" => 0xeedfcc, |
174
|
|
|
|
|
|
|
"antiquewhite3" => 0xcdc0b0, |
175
|
|
|
|
|
|
|
"antiquewhite4" => 0x8b8378, |
176
|
|
|
|
|
|
|
"bisque1" => 0xffe4c4, |
177
|
|
|
|
|
|
|
"bisque2" => 0xeed5b7, |
178
|
|
|
|
|
|
|
"bisque3" => 0xcdb79e, |
179
|
|
|
|
|
|
|
"bisque4" => 0x8b7d6b, |
180
|
|
|
|
|
|
|
"peachpuff1" => 0xffdab9, |
181
|
|
|
|
|
|
|
"peachpuff2" => 0xeecbad, |
182
|
|
|
|
|
|
|
"peachpuff3" => 0xcdaf95, |
183
|
|
|
|
|
|
|
"peachpuff4" => 0x8b7765, |
184
|
|
|
|
|
|
|
"navajowhite1" => 0xffdead, |
185
|
|
|
|
|
|
|
"navajowhite2" => 0xeecfa1, |
186
|
|
|
|
|
|
|
"navajowhite3" => 0xcdb38b, |
187
|
|
|
|
|
|
|
"navajowhite4" => 0x8b795e, |
188
|
|
|
|
|
|
|
"lemonchiffon1" => 0xfffacd, |
189
|
|
|
|
|
|
|
"lemonchiffon2" => 0xeee9bf, |
190
|
|
|
|
|
|
|
"lemonchiffon3" => 0xcdc9a5, |
191
|
|
|
|
|
|
|
"lemonchiffon4" => 0x8b8970, |
192
|
|
|
|
|
|
|
"cornsilk1" => 0xfff8dc, |
193
|
|
|
|
|
|
|
"cornsilk2" => 0xeee8cd, |
194
|
|
|
|
|
|
|
"cornsilk3" => 0xcdc8b1, |
195
|
|
|
|
|
|
|
"cornsilk4" => 0x8b8878, |
196
|
|
|
|
|
|
|
"ivory1" => 0xfffff0, |
197
|
|
|
|
|
|
|
"ivory2" => 0xeeeee0, |
198
|
|
|
|
|
|
|
"ivory3" => 0xcdcdc1, |
199
|
|
|
|
|
|
|
"ivory4" => 0x8b8b83, |
200
|
|
|
|
|
|
|
"honeydew1" => 0xf0fff0, |
201
|
|
|
|
|
|
|
"honeydew2" => 0xe0eee0, |
202
|
|
|
|
|
|
|
"honeydew3" => 0xc1cdc1, |
203
|
|
|
|
|
|
|
"honeydew4" => 0x838b83, |
204
|
|
|
|
|
|
|
"lavenderblush1" => 0xfff0f5, |
205
|
|
|
|
|
|
|
"lavenderblush2" => 0xeee0e5, |
206
|
|
|
|
|
|
|
"lavenderblush3" => 0xcdc1c5, |
207
|
|
|
|
|
|
|
"lavenderblush4" => 0x8b8386, |
208
|
|
|
|
|
|
|
"mistyrose1" => 0xffe4e1, |
209
|
|
|
|
|
|
|
"mistyrose2" => 0xeed5d2, |
210
|
|
|
|
|
|
|
"mistyrose3" => 0xcdb7b5, |
211
|
|
|
|
|
|
|
"mistyrose4" => 0x8b7d7b, |
212
|
|
|
|
|
|
|
"azure1" => 0xf0ffff, |
213
|
|
|
|
|
|
|
"azure2" => 0xe0eeee, |
214
|
|
|
|
|
|
|
"azure3" => 0xc1cdcd, |
215
|
|
|
|
|
|
|
"azure4" => 0x838b8b, |
216
|
|
|
|
|
|
|
"slateblue1" => 0x836fff, |
217
|
|
|
|
|
|
|
"slateblue2" => 0x7a67ee, |
218
|
|
|
|
|
|
|
"slateblue3" => 0x6959cd, |
219
|
|
|
|
|
|
|
"slateblue4" => 0x473c8b, |
220
|
|
|
|
|
|
|
"royalblue1" => 0x4876ff, |
221
|
|
|
|
|
|
|
"royalblue2" => 0x436eee, |
222
|
|
|
|
|
|
|
"royalblue3" => 0x3a5fcd, |
223
|
|
|
|
|
|
|
"royalblue4" => 0x27408b, |
224
|
|
|
|
|
|
|
"blue1" => 0x0000ff, |
225
|
|
|
|
|
|
|
"blue2" => 0x0000ee, |
226
|
|
|
|
|
|
|
"blue3" => 0x0000cd, |
227
|
|
|
|
|
|
|
"blue4" => 0x00008b, |
228
|
|
|
|
|
|
|
"dodgerblue1" => 0x1e90ff, |
229
|
|
|
|
|
|
|
"dodgerblue2" => 0x1c86ee, |
230
|
|
|
|
|
|
|
"dodgerblue3" => 0x1874cd, |
231
|
|
|
|
|
|
|
"dodgerblue4" => 0x104e8b, |
232
|
|
|
|
|
|
|
"steelblue1" => 0x63b8ff, |
233
|
|
|
|
|
|
|
"steelblue2" => 0x5cacee, |
234
|
|
|
|
|
|
|
"steelblue3" => 0x4f94cd, |
235
|
|
|
|
|
|
|
"steelblue4" => 0x36648b, |
236
|
|
|
|
|
|
|
"deepskyblue1" => 0x00bfff, |
237
|
|
|
|
|
|
|
"deepskyblue2" => 0x00b2ee, |
238
|
|
|
|
|
|
|
"deepskyblue3" => 0x009acd, |
239
|
|
|
|
|
|
|
"deepskyblue4" => 0x00688b, |
240
|
|
|
|
|
|
|
"skyblue1" => 0x87ceff, |
241
|
|
|
|
|
|
|
"skyblue2" => 0x7ec0ee, |
242
|
|
|
|
|
|
|
"skyblue3" => 0x6ca6cd, |
243
|
|
|
|
|
|
|
"skyblue4" => 0x4a708b, |
244
|
|
|
|
|
|
|
"lightskyblue1" => 0xb0e2ff, |
245
|
|
|
|
|
|
|
"lightskyblue2" => 0xa4d3ee, |
246
|
|
|
|
|
|
|
"lightskyblue3" => 0x8db6cd, |
247
|
|
|
|
|
|
|
"lightskyblue4" => 0x607b8b, |
248
|
|
|
|
|
|
|
"slategray1" => 0xc6e2ff, |
249
|
|
|
|
|
|
|
"slategray2" => 0xb9d3ee, |
250
|
|
|
|
|
|
|
"slategray3" => 0x9fb6cd, |
251
|
|
|
|
|
|
|
"slategray4" => 0x6c7b8b, |
252
|
|
|
|
|
|
|
"lightsteelblue1" => 0xcae1ff, |
253
|
|
|
|
|
|
|
"lightsteelblue2" => 0xbcd2ee, |
254
|
|
|
|
|
|
|
"lightsteelblue3" => 0xa2b5cd, |
255
|
|
|
|
|
|
|
"lightsteelblue4" => 0x6e7b8b, |
256
|
|
|
|
|
|
|
"lightblue1" => 0xbfefff, |
257
|
|
|
|
|
|
|
"lightblue2" => 0xb2dfee, |
258
|
|
|
|
|
|
|
"lightblue3" => 0x9ac0cd, |
259
|
|
|
|
|
|
|
"lightblue4" => 0x68838b, |
260
|
|
|
|
|
|
|
"lightcyan1" => 0xe0ffff, |
261
|
|
|
|
|
|
|
"lightcyan2" => 0xd1eeee, |
262
|
|
|
|
|
|
|
"lightcyan3" => 0xb4cdcd, |
263
|
|
|
|
|
|
|
"lightcyan4" => 0x7a8b8b, |
264
|
|
|
|
|
|
|
"paleturquoise1" => 0xbbffff, |
265
|
|
|
|
|
|
|
"paleturquoise2" => 0xaeeeee, |
266
|
|
|
|
|
|
|
"paleturquoise3" => 0x96cdcd, |
267
|
|
|
|
|
|
|
"paleturquoise4" => 0x668b8b, |
268
|
|
|
|
|
|
|
"cadetblue1" => 0x98f5ff, |
269
|
|
|
|
|
|
|
"cadetblue2" => 0x8ee5ee, |
270
|
|
|
|
|
|
|
"cadetblue3" => 0x7ac5cd, |
271
|
|
|
|
|
|
|
"cadetblue4" => 0x53868b, |
272
|
|
|
|
|
|
|
"turquoise1" => 0x00f5ff, |
273
|
|
|
|
|
|
|
"turquoise2" => 0x00e5ee, |
274
|
|
|
|
|
|
|
"turquoise3" => 0x00c5cd, |
275
|
|
|
|
|
|
|
"turquoise4" => 0x00868b, |
276
|
|
|
|
|
|
|
"cyan1" => 0x00ffff, |
277
|
|
|
|
|
|
|
"cyan2" => 0x00eeee, |
278
|
|
|
|
|
|
|
"cyan3" => 0x00cdcd, |
279
|
|
|
|
|
|
|
"cyan4" => 0x008b8b, |
280
|
|
|
|
|
|
|
"darkslategray1" => 0x97ffff, |
281
|
|
|
|
|
|
|
"darkslategray2" => 0x8deeee, |
282
|
|
|
|
|
|
|
"darkslategray3" => 0x79cdcd, |
283
|
|
|
|
|
|
|
"darkslategray4" => 0x528b8b, |
284
|
|
|
|
|
|
|
"aquamarine1" => 0x7fffd4, |
285
|
|
|
|
|
|
|
"aquamarine2" => 0x76eec6, |
286
|
|
|
|
|
|
|
"aquamarine3" => 0x66cdaa, |
287
|
|
|
|
|
|
|
"aquamarine4" => 0x458b74, |
288
|
|
|
|
|
|
|
"darkseagreen1" => 0xc1ffc1, |
289
|
|
|
|
|
|
|
"darkseagreen2" => 0xb4eeb4, |
290
|
|
|
|
|
|
|
"darkseagreen3" => 0x9bcd9b, |
291
|
|
|
|
|
|
|
"darkseagreen4" => 0x698b69, |
292
|
|
|
|
|
|
|
"seagreen1" => 0x54ff9f, |
293
|
|
|
|
|
|
|
"seagreen2" => 0x4eee94, |
294
|
|
|
|
|
|
|
"seagreen3" => 0x43cd80, |
295
|
|
|
|
|
|
|
"seagreen4" => 0x2e8b57, |
296
|
|
|
|
|
|
|
"palegreen1" => 0x9aff9a, |
297
|
|
|
|
|
|
|
"palegreen2" => 0x90ee90, |
298
|
|
|
|
|
|
|
"palegreen3" => 0x7ccd7c, |
299
|
|
|
|
|
|
|
"palegreen4" => 0x548b54, |
300
|
|
|
|
|
|
|
"springgreen1" => 0x00ff7f, |
301
|
|
|
|
|
|
|
"springgreen2" => 0x00ee76, |
302
|
|
|
|
|
|
|
"springgreen3" => 0x00cd66, |
303
|
|
|
|
|
|
|
"springgreen4" => 0x008b45, |
304
|
|
|
|
|
|
|
"green1" => 0x00ff00, |
305
|
|
|
|
|
|
|
"green2" => 0x00ee00, |
306
|
|
|
|
|
|
|
"green3" => 0x00cd00, |
307
|
|
|
|
|
|
|
"green4" => 0x008b00, |
308
|
|
|
|
|
|
|
"chartreuse1" => 0x7fff00, |
309
|
|
|
|
|
|
|
"chartreuse2" => 0x76ee00, |
310
|
|
|
|
|
|
|
"chartreuse3" => 0x66cd00, |
311
|
|
|
|
|
|
|
"chartreuse4" => 0x458b00, |
312
|
|
|
|
|
|
|
"olivedrab1" => 0xc0ff3e, |
313
|
|
|
|
|
|
|
"olivedrab2" => 0xb3ee3a, |
314
|
|
|
|
|
|
|
"olivedrab3" => 0x9acd32, |
315
|
|
|
|
|
|
|
"olivedrab4" => 0x698b22, |
316
|
|
|
|
|
|
|
"darkolivegreen1" => 0xcaff70, |
317
|
|
|
|
|
|
|
"darkolivegreen2" => 0xbcee68, |
318
|
|
|
|
|
|
|
"darkolivegreen3" => 0xa2cd5a, |
319
|
|
|
|
|
|
|
"darkolivegreen4" => 0x6e8b3d, |
320
|
|
|
|
|
|
|
"khaki1" => 0xfff68f, |
321
|
|
|
|
|
|
|
"khaki2" => 0xeee685, |
322
|
|
|
|
|
|
|
"khaki3" => 0xcdc673, |
323
|
|
|
|
|
|
|
"khaki4" => 0x8b864e, |
324
|
|
|
|
|
|
|
"lightgoldenrod1" => 0xffec8b, |
325
|
|
|
|
|
|
|
"lightgoldenrod2" => 0xeedc82, |
326
|
|
|
|
|
|
|
"lightgoldenrod3" => 0xcdbe70, |
327
|
|
|
|
|
|
|
"lightgoldenrod4" => 0x8b814c, |
328
|
|
|
|
|
|
|
"lightyellow1" => 0xffffe0, |
329
|
|
|
|
|
|
|
"lightyellow2" => 0xeeeed1, |
330
|
|
|
|
|
|
|
"lightyellow3" => 0xcdcdb4, |
331
|
|
|
|
|
|
|
"lightyellow4" => 0x8b8b7a, |
332
|
|
|
|
|
|
|
"yellow1" => 0xffff00, |
333
|
|
|
|
|
|
|
"yellow2" => 0xeeee00, |
334
|
|
|
|
|
|
|
"yellow3" => 0xcdcd00, |
335
|
|
|
|
|
|
|
"yellow4" => 0x8b8b00, |
336
|
|
|
|
|
|
|
"gold1" => 0xffd700, |
337
|
|
|
|
|
|
|
"gold2" => 0xeec900, |
338
|
|
|
|
|
|
|
"gold3" => 0xcdad00, |
339
|
|
|
|
|
|
|
"gold4" => 0x8b7500, |
340
|
|
|
|
|
|
|
"goldenrod1" => 0xffc125, |
341
|
|
|
|
|
|
|
"goldenrod2" => 0xeeb422, |
342
|
|
|
|
|
|
|
"goldenrod3" => 0xcd9b1d, |
343
|
|
|
|
|
|
|
"goldenrod4" => 0x8b6914, |
344
|
|
|
|
|
|
|
"darkgoldenrod1" => 0xffb90f, |
345
|
|
|
|
|
|
|
"darkgoldenrod2" => 0xeead0e, |
346
|
|
|
|
|
|
|
"darkgoldenrod3" => 0xcd950c, |
347
|
|
|
|
|
|
|
"darkgoldenrod4" => 0x8b6508, |
348
|
|
|
|
|
|
|
"rosybrown1" => 0xffc1c1, |
349
|
|
|
|
|
|
|
"rosybrown2" => 0xeeb4b4, |
350
|
|
|
|
|
|
|
"rosybrown3" => 0xcd9b9b, |
351
|
|
|
|
|
|
|
"rosybrown4" => 0x8b6969, |
352
|
|
|
|
|
|
|
"indianred1" => 0xff6a6a, |
353
|
|
|
|
|
|
|
"indianred2" => 0xee6363, |
354
|
|
|
|
|
|
|
"indianred3" => 0xcd5555, |
355
|
|
|
|
|
|
|
"indianred4" => 0x8b3a3a, |
356
|
|
|
|
|
|
|
"sienna1" => 0xff8247, |
357
|
|
|
|
|
|
|
"sienna2" => 0xee7942, |
358
|
|
|
|
|
|
|
"sienna3" => 0xcd6839, |
359
|
|
|
|
|
|
|
"sienna4" => 0x8b4726, |
360
|
|
|
|
|
|
|
"burlywood1" => 0xffd39b, |
361
|
|
|
|
|
|
|
"burlywood2" => 0xeec591, |
362
|
|
|
|
|
|
|
"burlywood3" => 0xcdaa7d, |
363
|
|
|
|
|
|
|
"burlywood4" => 0x8b7355, |
364
|
|
|
|
|
|
|
"wheat1" => 0xffe7ba, |
365
|
|
|
|
|
|
|
"wheat2" => 0xeed8ae, |
366
|
|
|
|
|
|
|
"wheat3" => 0xcdba96, |
367
|
|
|
|
|
|
|
"wheat4" => 0x8b7e66, |
368
|
|
|
|
|
|
|
"tan1" => 0xffa54f, |
369
|
|
|
|
|
|
|
"tan2" => 0xee9a49, |
370
|
|
|
|
|
|
|
"tan3" => 0xcd853f, |
371
|
|
|
|
|
|
|
"tan4" => 0x8b5a2b, |
372
|
|
|
|
|
|
|
"chocolate1" => 0xff7f24, |
373
|
|
|
|
|
|
|
"chocolate2" => 0xee7621, |
374
|
|
|
|
|
|
|
"chocolate3" => 0xcd661d, |
375
|
|
|
|
|
|
|
"chocolate4" => 0x8b4513, |
376
|
|
|
|
|
|
|
"firebrick1" => 0xff3030, |
377
|
|
|
|
|
|
|
"firebrick2" => 0xee2c2c, |
378
|
|
|
|
|
|
|
"firebrick3" => 0xcd2626, |
379
|
|
|
|
|
|
|
"firebrick4" => 0x8b1a1a, |
380
|
|
|
|
|
|
|
"brown1" => 0xff4040, |
381
|
|
|
|
|
|
|
"brown2" => 0xee3b3b, |
382
|
|
|
|
|
|
|
"brown3" => 0xcd3333, |
383
|
|
|
|
|
|
|
"brown4" => 0x8b2323, |
384
|
|
|
|
|
|
|
"salmon1" => 0xff8c69, |
385
|
|
|
|
|
|
|
"salmon2" => 0xee8262, |
386
|
|
|
|
|
|
|
"salmon3" => 0xcd7054, |
387
|
|
|
|
|
|
|
"salmon4" => 0x8b4c39, |
388
|
|
|
|
|
|
|
"lightsalmon1" => 0xffa07a, |
389
|
|
|
|
|
|
|
"lightsalmon2" => 0xee9572, |
390
|
|
|
|
|
|
|
"lightsalmon3" => 0xcd8162, |
391
|
|
|
|
|
|
|
"lightsalmon4" => 0x8b5742, |
392
|
|
|
|
|
|
|
"orange1" => 0xffa500, |
393
|
|
|
|
|
|
|
"orange2" => 0xee9a00, |
394
|
|
|
|
|
|
|
"orange3" => 0xcd8500, |
395
|
|
|
|
|
|
|
"orange4" => 0x8b5a00, |
396
|
|
|
|
|
|
|
"darkorange1" => 0xff7f00, |
397
|
|
|
|
|
|
|
"darkorange2" => 0xee7600, |
398
|
|
|
|
|
|
|
"darkorange3" => 0xcd6600, |
399
|
|
|
|
|
|
|
"darkorange4" => 0x8b4500, |
400
|
|
|
|
|
|
|
"coral1" => 0xff7256, |
401
|
|
|
|
|
|
|
"coral2" => 0xee6a50, |
402
|
|
|
|
|
|
|
"coral3" => 0xcd5b45, |
403
|
|
|
|
|
|
|
"coral4" => 0x8b3e2f, |
404
|
|
|
|
|
|
|
"tomato1" => 0xff6347, |
405
|
|
|
|
|
|
|
"tomato2" => 0xee5c42, |
406
|
|
|
|
|
|
|
"tomato3" => 0xcd4f39, |
407
|
|
|
|
|
|
|
"tomato4" => 0x8b3626, |
408
|
|
|
|
|
|
|
"orangered1" => 0xff4500, |
409
|
|
|
|
|
|
|
"orangered2" => 0xee4000, |
410
|
|
|
|
|
|
|
"orangered3" => 0xcd3700, |
411
|
|
|
|
|
|
|
"orangered4" => 0x8b2500, |
412
|
|
|
|
|
|
|
"red1" => 0xff0000, |
413
|
|
|
|
|
|
|
"red2" => 0xee0000, |
414
|
|
|
|
|
|
|
"red3" => 0xcd0000, |
415
|
|
|
|
|
|
|
"red4" => 0x8b0000, |
416
|
|
|
|
|
|
|
"deeppink1" => 0xff1493, |
417
|
|
|
|
|
|
|
"deeppink2" => 0xee1289, |
418
|
|
|
|
|
|
|
"deeppink3" => 0xcd1076, |
419
|
|
|
|
|
|
|
"deeppink4" => 0x8b0a50, |
420
|
|
|
|
|
|
|
"hotpink1" => 0xff6eb4, |
421
|
|
|
|
|
|
|
"hotpink2" => 0xee6aa7, |
422
|
|
|
|
|
|
|
"hotpink3" => 0xcd6090, |
423
|
|
|
|
|
|
|
"hotpink4" => 0x8b3a62, |
424
|
|
|
|
|
|
|
"pink1" => 0xffb5c5, |
425
|
|
|
|
|
|
|
"pink2" => 0xeea9b8, |
426
|
|
|
|
|
|
|
"pink3" => 0xcd919e, |
427
|
|
|
|
|
|
|
"pink4" => 0x8b636c, |
428
|
|
|
|
|
|
|
"lightpink1" => 0xffaeb9, |
429
|
|
|
|
|
|
|
"lightpink2" => 0xeea2ad, |
430
|
|
|
|
|
|
|
"lightpink3" => 0xcd8c95, |
431
|
|
|
|
|
|
|
"lightpink4" => 0x8b5f65, |
432
|
|
|
|
|
|
|
"palevioletred1" => 0xff82ab, |
433
|
|
|
|
|
|
|
"palevioletred2" => 0xee799f, |
434
|
|
|
|
|
|
|
"palevioletred3" => 0xcd6889, |
435
|
|
|
|
|
|
|
"palevioletred4" => 0x8b475d, |
436
|
|
|
|
|
|
|
"maroon1" => 0xff34b3, |
437
|
|
|
|
|
|
|
"maroon2" => 0xee30a7, |
438
|
|
|
|
|
|
|
"maroon3" => 0xcd2990, |
439
|
|
|
|
|
|
|
"maroon4" => 0x8b1c62, |
440
|
|
|
|
|
|
|
"violetred1" => 0xff3e96, |
441
|
|
|
|
|
|
|
"violetred2" => 0xee3a8c, |
442
|
|
|
|
|
|
|
"violetred3" => 0xcd3278, |
443
|
|
|
|
|
|
|
"violetred4" => 0x8b2252, |
444
|
|
|
|
|
|
|
"magenta1" => 0xff00ff, |
445
|
|
|
|
|
|
|
"magenta2" => 0xee00ee, |
446
|
|
|
|
|
|
|
"magenta3" => 0xcd00cd, |
447
|
|
|
|
|
|
|
"magenta4" => 0x8b008b, |
448
|
|
|
|
|
|
|
"orchid1" => 0xff83fa, |
449
|
|
|
|
|
|
|
"orchid2" => 0xee7ae9, |
450
|
|
|
|
|
|
|
"orchid3" => 0xcd69c9, |
451
|
|
|
|
|
|
|
"orchid4" => 0x8b4789, |
452
|
|
|
|
|
|
|
"plum1" => 0xffbbff, |
453
|
|
|
|
|
|
|
"plum2" => 0xeeaeee, |
454
|
|
|
|
|
|
|
"plum3" => 0xcd96cd, |
455
|
|
|
|
|
|
|
"plum4" => 0x8b668b, |
456
|
|
|
|
|
|
|
"mediumorchid1" => 0xe066ff, |
457
|
|
|
|
|
|
|
"mediumorchid2" => 0xd15fee, |
458
|
|
|
|
|
|
|
"mediumorchid3" => 0xb452cd, |
459
|
|
|
|
|
|
|
"mediumorchid4" => 0x7a378b, |
460
|
|
|
|
|
|
|
"darkorchid1" => 0xbf3eff, |
461
|
|
|
|
|
|
|
"darkorchid2" => 0xb23aee, |
462
|
|
|
|
|
|
|
"darkorchid3" => 0x9a32cd, |
463
|
|
|
|
|
|
|
"darkorchid4" => 0x68228b, |
464
|
|
|
|
|
|
|
"purple1" => 0x9b30ff, |
465
|
|
|
|
|
|
|
"purple2" => 0x912cee, |
466
|
|
|
|
|
|
|
"purple3" => 0x7d26cd, |
467
|
|
|
|
|
|
|
"purple4" => 0x551a8b, |
468
|
|
|
|
|
|
|
"mediumpurple1" => 0xab82ff, |
469
|
|
|
|
|
|
|
"mediumpurple2" => 0x9f79ee, |
470
|
|
|
|
|
|
|
"mediumpurple3" => 0x8968cd, |
471
|
|
|
|
|
|
|
"mediumpurple4" => 0x5d478b, |
472
|
|
|
|
|
|
|
"thistle1" => 0xffe1ff, |
473
|
|
|
|
|
|
|
"thistle2" => 0xeed2ee, |
474
|
|
|
|
|
|
|
"thistle3" => 0xcdb5cd, |
475
|
|
|
|
|
|
|
"thistle4" => 0x8b7b8b, |
476
|
|
|
|
|
|
|
"gray0" => 0x000000, |
477
|
|
|
|
|
|
|
"grey0" => 0x000000, |
478
|
|
|
|
|
|
|
"gray1" => 0x030303, |
479
|
|
|
|
|
|
|
"grey1" => 0x030303, |
480
|
|
|
|
|
|
|
"gray2" => 0x050505, |
481
|
|
|
|
|
|
|
"grey2" => 0x050505, |
482
|
|
|
|
|
|
|
"gray3" => 0x080808, |
483
|
|
|
|
|
|
|
"grey3" => 0x080808, |
484
|
|
|
|
|
|
|
"gray4" => 0x0a0a0a, |
485
|
|
|
|
|
|
|
"grey4" => 0x0a0a0a, |
486
|
|
|
|
|
|
|
"gray5" => 0x0d0d0d, |
487
|
|
|
|
|
|
|
"grey5" => 0x0d0d0d, |
488
|
|
|
|
|
|
|
"gray6" => 0x0f0f0f, |
489
|
|
|
|
|
|
|
"grey6" => 0x0f0f0f, |
490
|
|
|
|
|
|
|
"gray7" => 0x121212, |
491
|
|
|
|
|
|
|
"grey7" => 0x121212, |
492
|
|
|
|
|
|
|
"gray8" => 0x141414, |
493
|
|
|
|
|
|
|
"grey8" => 0x141414, |
494
|
|
|
|
|
|
|
"gray9" => 0x171717, |
495
|
|
|
|
|
|
|
"grey9" => 0x171717, |
496
|
|
|
|
|
|
|
"gray10" => 0x1a1a1a, |
497
|
|
|
|
|
|
|
"grey10" => 0x1a1a1a, |
498
|
|
|
|
|
|
|
"gray11" => 0x1c1c1c, |
499
|
|
|
|
|
|
|
"grey11" => 0x1c1c1c, |
500
|
|
|
|
|
|
|
"gray12" => 0x1f1f1f, |
501
|
|
|
|
|
|
|
"grey12" => 0x1f1f1f, |
502
|
|
|
|
|
|
|
"gray13" => 0x212121, |
503
|
|
|
|
|
|
|
"grey13" => 0x212121, |
504
|
|
|
|
|
|
|
"gray14" => 0x242424, |
505
|
|
|
|
|
|
|
"grey14" => 0x242424, |
506
|
|
|
|
|
|
|
"gray15" => 0x262626, |
507
|
|
|
|
|
|
|
"grey15" => 0x262626, |
508
|
|
|
|
|
|
|
"gray16" => 0x292929, |
509
|
|
|
|
|
|
|
"grey16" => 0x292929, |
510
|
|
|
|
|
|
|
"gray17" => 0x2b2b2b, |
511
|
|
|
|
|
|
|
"grey17" => 0x2b2b2b, |
512
|
|
|
|
|
|
|
"gray18" => 0x2e2e2e, |
513
|
|
|
|
|
|
|
"grey18" => 0x2e2e2e, |
514
|
|
|
|
|
|
|
"gray19" => 0x303030, |
515
|
|
|
|
|
|
|
"grey19" => 0x303030, |
516
|
|
|
|
|
|
|
"gray20" => 0x333333, |
517
|
|
|
|
|
|
|
"grey20" => 0x333333, |
518
|
|
|
|
|
|
|
"gray21" => 0x363636, |
519
|
|
|
|
|
|
|
"grey21" => 0x363636, |
520
|
|
|
|
|
|
|
"gray22" => 0x383838, |
521
|
|
|
|
|
|
|
"grey22" => 0x383838, |
522
|
|
|
|
|
|
|
"gray23" => 0x3b3b3b, |
523
|
|
|
|
|
|
|
"grey23" => 0x3b3b3b, |
524
|
|
|
|
|
|
|
"gray24" => 0x3d3d3d, |
525
|
|
|
|
|
|
|
"grey24" => 0x3d3d3d, |
526
|
|
|
|
|
|
|
"gray25" => 0x404040, |
527
|
|
|
|
|
|
|
"grey25" => 0x404040, |
528
|
|
|
|
|
|
|
"gray26" => 0x424242, |
529
|
|
|
|
|
|
|
"grey26" => 0x424242, |
530
|
|
|
|
|
|
|
"gray27" => 0x454545, |
531
|
|
|
|
|
|
|
"grey27" => 0x454545, |
532
|
|
|
|
|
|
|
"gray28" => 0x474747, |
533
|
|
|
|
|
|
|
"grey28" => 0x474747, |
534
|
|
|
|
|
|
|
"gray29" => 0x4a4a4a, |
535
|
|
|
|
|
|
|
"grey29" => 0x4a4a4a, |
536
|
|
|
|
|
|
|
"gray30" => 0x4d4d4d, |
537
|
|
|
|
|
|
|
"grey30" => 0x4d4d4d, |
538
|
|
|
|
|
|
|
"gray31" => 0x4f4f4f, |
539
|
|
|
|
|
|
|
"grey31" => 0x4f4f4f, |
540
|
|
|
|
|
|
|
"gray32" => 0x525252, |
541
|
|
|
|
|
|
|
"grey32" => 0x525252, |
542
|
|
|
|
|
|
|
"gray33" => 0x545454, |
543
|
|
|
|
|
|
|
"grey33" => 0x545454, |
544
|
|
|
|
|
|
|
"gray34" => 0x575757, |
545
|
|
|
|
|
|
|
"grey34" => 0x575757, |
546
|
|
|
|
|
|
|
"gray35" => 0x595959, |
547
|
|
|
|
|
|
|
"grey35" => 0x595959, |
548
|
|
|
|
|
|
|
"gray36" => 0x5c5c5c, |
549
|
|
|
|
|
|
|
"grey36" => 0x5c5c5c, |
550
|
|
|
|
|
|
|
"gray37" => 0x5e5e5e, |
551
|
|
|
|
|
|
|
"grey37" => 0x5e5e5e, |
552
|
|
|
|
|
|
|
"gray38" => 0x616161, |
553
|
|
|
|
|
|
|
"grey38" => 0x616161, |
554
|
|
|
|
|
|
|
"gray39" => 0x636363, |
555
|
|
|
|
|
|
|
"grey39" => 0x636363, |
556
|
|
|
|
|
|
|
"gray40" => 0x666666, |
557
|
|
|
|
|
|
|
"grey40" => 0x666666, |
558
|
|
|
|
|
|
|
"gray41" => 0x696969, |
559
|
|
|
|
|
|
|
"grey41" => 0x696969, |
560
|
|
|
|
|
|
|
"gray42" => 0x6b6b6b, |
561
|
|
|
|
|
|
|
"grey42" => 0x6b6b6b, |
562
|
|
|
|
|
|
|
"gray43" => 0x6e6e6e, |
563
|
|
|
|
|
|
|
"grey43" => 0x6e6e6e, |
564
|
|
|
|
|
|
|
"gray44" => 0x707070, |
565
|
|
|
|
|
|
|
"grey44" => 0x707070, |
566
|
|
|
|
|
|
|
"gray45" => 0x737373, |
567
|
|
|
|
|
|
|
"grey45" => 0x737373, |
568
|
|
|
|
|
|
|
"gray46" => 0x757575, |
569
|
|
|
|
|
|
|
"grey46" => 0x757575, |
570
|
|
|
|
|
|
|
"gray47" => 0x787878, |
571
|
|
|
|
|
|
|
"grey47" => 0x787878, |
572
|
|
|
|
|
|
|
"gray48" => 0x7a7a7a, |
573
|
|
|
|
|
|
|
"grey48" => 0x7a7a7a, |
574
|
|
|
|
|
|
|
"gray49" => 0x7d7d7d, |
575
|
|
|
|
|
|
|
"grey49" => 0x7d7d7d, |
576
|
|
|
|
|
|
|
"gray50" => 0x7f7f7f, |
577
|
|
|
|
|
|
|
"grey50" => 0x7f7f7f, |
578
|
|
|
|
|
|
|
"gray51" => 0x828282, |
579
|
|
|
|
|
|
|
"grey51" => 0x828282, |
580
|
|
|
|
|
|
|
"gray52" => 0x858585, |
581
|
|
|
|
|
|
|
"grey52" => 0x858585, |
582
|
|
|
|
|
|
|
"gray53" => 0x878787, |
583
|
|
|
|
|
|
|
"grey53" => 0x878787, |
584
|
|
|
|
|
|
|
"gray54" => 0x8a8a8a, |
585
|
|
|
|
|
|
|
"grey54" => 0x8a8a8a, |
586
|
|
|
|
|
|
|
"gray55" => 0x8c8c8c, |
587
|
|
|
|
|
|
|
"grey55" => 0x8c8c8c, |
588
|
|
|
|
|
|
|
"gray56" => 0x8f8f8f, |
589
|
|
|
|
|
|
|
"grey56" => 0x8f8f8f, |
590
|
|
|
|
|
|
|
"gray57" => 0x919191, |
591
|
|
|
|
|
|
|
"grey57" => 0x919191, |
592
|
|
|
|
|
|
|
"gray58" => 0x949494, |
593
|
|
|
|
|
|
|
"grey58" => 0x949494, |
594
|
|
|
|
|
|
|
"gray59" => 0x969696, |
595
|
|
|
|
|
|
|
"grey59" => 0x969696, |
596
|
|
|
|
|
|
|
"gray60" => 0x999999, |
597
|
|
|
|
|
|
|
"grey60" => 0x999999, |
598
|
|
|
|
|
|
|
"gray61" => 0x9c9c9c, |
599
|
|
|
|
|
|
|
"grey61" => 0x9c9c9c, |
600
|
|
|
|
|
|
|
"gray62" => 0x9e9e9e, |
601
|
|
|
|
|
|
|
"grey62" => 0x9e9e9e, |
602
|
|
|
|
|
|
|
"gray63" => 0xa1a1a1, |
603
|
|
|
|
|
|
|
"grey63" => 0xa1a1a1, |
604
|
|
|
|
|
|
|
"gray64" => 0xa3a3a3, |
605
|
|
|
|
|
|
|
"grey64" => 0xa3a3a3, |
606
|
|
|
|
|
|
|
"gray65" => 0xa6a6a6, |
607
|
|
|
|
|
|
|
"grey65" => 0xa6a6a6, |
608
|
|
|
|
|
|
|
"gray66" => 0xa8a8a8, |
609
|
|
|
|
|
|
|
"grey66" => 0xa8a8a8, |
610
|
|
|
|
|
|
|
"gray67" => 0xababab, |
611
|
|
|
|
|
|
|
"grey67" => 0xababab, |
612
|
|
|
|
|
|
|
"gray68" => 0xadadad, |
613
|
|
|
|
|
|
|
"grey68" => 0xadadad, |
614
|
|
|
|
|
|
|
"gray69" => 0xb0b0b0, |
615
|
|
|
|
|
|
|
"grey69" => 0xb0b0b0, |
616
|
|
|
|
|
|
|
"gray70" => 0xb3b3b3, |
617
|
|
|
|
|
|
|
"grey70" => 0xb3b3b3, |
618
|
|
|
|
|
|
|
"gray71" => 0xb5b5b5, |
619
|
|
|
|
|
|
|
"grey71" => 0xb5b5b5, |
620
|
|
|
|
|
|
|
"gray72" => 0xb8b8b8, |
621
|
|
|
|
|
|
|
"grey72" => 0xb8b8b8, |
622
|
|
|
|
|
|
|
"gray73" => 0xbababa, |
623
|
|
|
|
|
|
|
"grey73" => 0xbababa, |
624
|
|
|
|
|
|
|
"gray74" => 0xbdbdbd, |
625
|
|
|
|
|
|
|
"grey74" => 0xbdbdbd, |
626
|
|
|
|
|
|
|
"gray75" => 0xbfbfbf, |
627
|
|
|
|
|
|
|
"grey75" => 0xbfbfbf, |
628
|
|
|
|
|
|
|
"gray76" => 0xc2c2c2, |
629
|
|
|
|
|
|
|
"grey76" => 0xc2c2c2, |
630
|
|
|
|
|
|
|
"gray77" => 0xc4c4c4, |
631
|
|
|
|
|
|
|
"grey77" => 0xc4c4c4, |
632
|
|
|
|
|
|
|
"gray78" => 0xc7c7c7, |
633
|
|
|
|
|
|
|
"grey78" => 0xc7c7c7, |
634
|
|
|
|
|
|
|
"gray79" => 0xc9c9c9, |
635
|
|
|
|
|
|
|
"grey79" => 0xc9c9c9, |
636
|
|
|
|
|
|
|
"gray80" => 0xcccccc, |
637
|
|
|
|
|
|
|
"grey80" => 0xcccccc, |
638
|
|
|
|
|
|
|
"gray81" => 0xcfcfcf, |
639
|
|
|
|
|
|
|
"grey81" => 0xcfcfcf, |
640
|
|
|
|
|
|
|
"gray82" => 0xd1d1d1, |
641
|
|
|
|
|
|
|
"grey82" => 0xd1d1d1, |
642
|
|
|
|
|
|
|
"gray83" => 0xd4d4d4, |
643
|
|
|
|
|
|
|
"grey83" => 0xd4d4d4, |
644
|
|
|
|
|
|
|
"gray84" => 0xd6d6d6, |
645
|
|
|
|
|
|
|
"grey84" => 0xd6d6d6, |
646
|
|
|
|
|
|
|
"gray85" => 0xd9d9d9, |
647
|
|
|
|
|
|
|
"grey85" => 0xd9d9d9, |
648
|
|
|
|
|
|
|
"gray86" => 0xdbdbdb, |
649
|
|
|
|
|
|
|
"grey86" => 0xdbdbdb, |
650
|
|
|
|
|
|
|
"gray87" => 0xdedede, |
651
|
|
|
|
|
|
|
"grey87" => 0xdedede, |
652
|
|
|
|
|
|
|
"gray88" => 0xe0e0e0, |
653
|
|
|
|
|
|
|
"grey88" => 0xe0e0e0, |
654
|
|
|
|
|
|
|
"gray89" => 0xe3e3e3, |
655
|
|
|
|
|
|
|
"grey89" => 0xe3e3e3, |
656
|
|
|
|
|
|
|
"gray90" => 0xe5e5e5, |
657
|
|
|
|
|
|
|
"grey90" => 0xe5e5e5, |
658
|
|
|
|
|
|
|
"gray91" => 0xe8e8e8, |
659
|
|
|
|
|
|
|
"grey91" => 0xe8e8e8, |
660
|
|
|
|
|
|
|
"gray92" => 0xebebeb, |
661
|
|
|
|
|
|
|
"grey92" => 0xebebeb, |
662
|
|
|
|
|
|
|
"gray93" => 0xededed, |
663
|
|
|
|
|
|
|
"grey93" => 0xededed, |
664
|
|
|
|
|
|
|
"gray94" => 0xf0f0f0, |
665
|
|
|
|
|
|
|
"grey94" => 0xf0f0f0, |
666
|
|
|
|
|
|
|
"gray95" => 0xf2f2f2, |
667
|
|
|
|
|
|
|
"grey95" => 0xf2f2f2, |
668
|
|
|
|
|
|
|
"gray96" => 0xf5f5f5, |
669
|
|
|
|
|
|
|
"grey96" => 0xf5f5f5, |
670
|
|
|
|
|
|
|
"gray97" => 0xf7f7f7, |
671
|
|
|
|
|
|
|
"grey97" => 0xf7f7f7, |
672
|
|
|
|
|
|
|
"gray98" => 0xfafafa, |
673
|
|
|
|
|
|
|
"grey98" => 0xfafafa, |
674
|
|
|
|
|
|
|
"gray99" => 0xfcfcfc, |
675
|
|
|
|
|
|
|
"grey99" => 0xfcfcfc, |
676
|
|
|
|
|
|
|
"gray100" => 0xffffff, |
677
|
|
|
|
|
|
|
"grey100" => 0xffffff, |
678
|
|
|
|
|
|
|
"darkgrey" => 0xa9a9a9, |
679
|
|
|
|
|
|
|
"darkgray" => 0xa9a9a9, |
680
|
|
|
|
|
|
|
"darkblue" => 0x00008b, |
681
|
|
|
|
|
|
|
"darkcyan" => 0x008b8b, |
682
|
|
|
|
|
|
|
"darkmagenta" => 0x8b008b, |
683
|
|
|
|
|
|
|
"darkred" => 0x8b0000, |
684
|
|
|
|
|
|
|
"lightgreen" => 0x90ee90, |
685
|
|
|
|
|
|
|
"crimson" => 0xdc143c, |
686
|
|
|
|
|
|
|
"indigo" => 0x4b0082, |
687
|
|
|
|
|
|
|
"olive" => 0x808000, |
688
|
|
|
|
|
|
|
"rebeccapurple" => 0x663399, |
689
|
|
|
|
|
|
|
"silver" => 0xc0c0c0, |
690
|
|
|
|
|
|
|
"teal" => 0x008080, |
691
|
|
|
|
|
|
|
}; |
692
|
|
|
|
|
|
|
} |
693
|
|
|
|
|
|
|
|
694
|
|
|
|
|
|
|
1; |
695
|
|
|
|
|
|
|
|
696
|
|
|
|
|
|
|
__END__ |