-
Notifications
You must be signed in to change notification settings - Fork 5
/
color.h
667 lines (664 loc) · 25.6 KB
/
color.h
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
struct Color {
uint8_t r;
uint8_t g;
uint8_t b;
};
const Color off = { 0, 0, 0 };
/*
perl -lane'$_ = sprintf("%d", ($_/255) ** 3 * 255) for @F[0..2]; @F==4 and
print "const Color \L$F[3]\E = { $F[0], $F[1], $F[2] };"' /etc/X11/rgb.txt |
grep -v tan
*/
const Color snow = { 255, 240, 240 };
const Color ghostwhite = { 234, 234, 255 };
const Color whitesmoke = { 226, 226, 226 };
const Color gainsboro = { 163, 163, 163 };
const Color floralwhite = { 255, 240, 212 };
const Color oldlace = { 249, 226, 187 };
const Color linen = { 240, 212, 187 };
const Color antiquewhite = { 240, 199, 152 };
const Color papayawhip = { 255, 209, 148 };
const Color blanchedalmond = { 255, 199, 132 };
const Color bisque = { 255, 182, 115 };
const Color peachpuff = { 255, 159, 97 };
const Color navajowhite = { 255, 168, 79 };
const Color moccasin = { 255, 182, 91 };
const Color cornsilk = { 255, 234, 163 };
const Color ivory = { 255, 255, 212 };
const Color lemonchiffon = { 255, 240, 132 };
const Color seashell = { 255, 226, 207 };
const Color honeydew = { 212, 255, 212 };
const Color mintcream = { 226, 255, 240 };
const Color azure = { 212, 255, 255 };
const Color aliceblue = { 212, 234, 255 };
const Color lavender = { 187, 187, 240 };
const Color lavenderblush = { 255, 212, 226 };
const Color mistyrose = { 255, 182, 175 };
const Color white = { 255, 255, 255 };
const Color black = { 0, 0, 0 };
const Color darkslategray = { 1, 7, 7 };
const Color darkslategrey = { 1, 7, 7 };
const Color dimgray = { 17, 17, 17 };
const Color dimgrey = { 17, 17, 17 };
const Color slategray = { 21, 32, 45 };
const Color slategrey = { 21, 32, 45 };
const Color lightslategray = { 25, 38, 55 };
const Color lightslategrey = { 25, 38, 55 };
const Color gray = { 105, 105, 105 };
const Color grey = { 105, 105, 105 };
const Color lightgrey = { 144, 144, 144 };
const Color lightgray = { 144, 144, 144 };
const Color midnightblue = { 0, 0, 21 };
const Color navy = { 0, 0, 32 };
const Color navyblue = { 0, 0, 32 };
const Color cornflowerblue = { 15, 50, 204 };
const Color darkslateblue = { 5, 3, 41 };
const Color slateblue = { 18, 11, 132 };
const Color mediumslateblue = { 28, 17, 207 };
const Color lightslateblue = { 35, 21, 255 };
const Color mediumblue = { 0, 0, 132 };
const Color royalblue = { 4, 17, 175 };
const Color blue = { 0, 0, 255 };
const Color dodgerblue = { 0, 45, 255 };
const Color deepskyblue = { 0, 107, 255 };
const Color skyblue = { 37, 134, 199 };
const Color lightskyblue = { 37, 134, 240 };
const Color steelblue = { 5, 33, 89 };
const Color lightsteelblue = { 83, 115, 168 };
const Color lightblue = { 79, 154, 187 };
const Color powderblue = { 83, 172, 187 };
const Color paleturquoise = { 82, 207, 207 };
const Color darkturquoise = { 0, 134, 140 };
const Color mediumturquoise = { 5, 140, 130 };
const Color turquoise = { 4, 172, 138 };
const Color cyan = { 0, 255, 255 };
const Color lightcyan = { 172, 255, 255 };
const Color cadetblue = { 13, 60, 62 };
const Color mediumaquamarine = { 16, 132, 75 };
const Color aquamarine = { 31, 255, 146 };
const Color darkgreen = { 0, 15, 0 };
const Color darkolivegreen = { 9, 18, 1 };
const Color darkseagreen = { 44, 102, 44 };
const Color seagreen = { 1, 41, 10 };
const Color mediumseagreen = { 3, 88, 22 };
const Color lightseagreen = { 0, 86, 75 };
const Color palegreen = { 54, 243, 54 };
const Color springgreen = { 0, 255, 31 };
const Color lawngreen = { 29, 246, 0 };
const Color green = { 0, 255, 0 };
const Color chartreuse = { 31, 255, 0 };
const Color mediumspringgreen = { 0, 240, 56 };
const Color greenyellow = { 79, 255, 1 };
const Color limegreen = { 1, 132, 1 };
const Color yellowgreen = { 56, 132, 1 };
const Color forestgreen = { 0, 41, 0 };
const Color olivedrab = { 18, 44, 0 };
const Color darkkhaki = { 103, 94, 18 };
const Color khaki = { 212, 187, 42 };
const Color palegoldenrod = { 207, 192, 75 };
const Color lightgoldenrodyellow = { 240, 240, 142 };
const Color lightyellow = { 255, 255, 172 };
const Color yellow = { 255, 255, 0 };
const Color gold = { 255, 152, 0 };
const Color lightgoldenrod = { 207, 165, 33 };
const Color goldenrod = { 159, 69, 0 };
const Color darkgoldenrod = { 95, 37, 0 };
const Color rosybrown = { 102, 44, 44 };
const Color indianred = { 132, 11, 11 };
const Color saddlebrown = { 41, 5, 0 };
const Color sienna = { 62, 8, 1 };
const Color peru = { 132, 36, 3 };
const Color burlywood = { 168, 95, 37 };
const Color beige = { 226, 226, 163 };
const Color wheat = { 226, 168, 88 };
const Color sandybrown = { 223, 67, 13 };
const Color chocolate = { 142, 17, 0 };
const Color firebrick = { 86, 0, 0 };
const Color brown = { 69, 1, 1 };
const Color darksalmon = { 194, 51, 27 };
const Color salmon = { 240, 32, 22 };
const Color lightsalmon = { 255, 62, 27 };
const Color orange = { 255, 69, 0 };
const Color darkorange = { 255, 42, 0 };
const Color coral = { 255, 31, 7 };
const Color lightcoral = { 212, 32, 32 };
const Color tomato = { 255, 14, 5 };
const Color orangered = { 255, 5, 0 };
const Color red = { 255, 0, 0 };
const Color hotpink = { 255, 17, 89 };
const Color deeppink = { 255, 0, 48 };
const Color pink = { 255, 108, 128 };
const Color lightpink = { 255, 92, 110 };
const Color palevioletred = { 161, 21, 48 };
const Color maroon = { 83, 1, 13 };
const Color mediumvioletred = { 121, 0, 36 };
const Color violetred = { 138, 0, 45 };
const Color magenta = { 255, 0, 255 };
const Color violet = { 207, 33, 207 };
const Color plum = { 165, 62, 165 };
const Color orchid = { 159, 21, 150 };
const Color mediumorchid = { 98, 9, 144 };
const Color darkorchid = { 55, 1, 130 };
const Color darkviolet = { 49, 0, 144 };
const Color blueviolet = { 40, 1, 177 };
const Color purple = { 62, 0, 212 };
const Color mediumpurple = { 48, 21, 161 };
const Color thistle = { 154, 107, 154 };
const Color snow1 = { 255, 240, 240 };
const Color snow2 = { 207, 194, 194 };
const Color snow3 = { 132, 124, 124 };
const Color snow4 = { 41, 39, 39 };
const Color seashell1 = { 255, 226, 207 };
const Color seashell2 = { 207, 184, 168 };
const Color seashell3 = { 132, 117, 107 };
const Color seashell4 = { 41, 37, 33 };
const Color antiquewhite1 = { 255, 209, 161 };
const Color antiquewhite2 = { 207, 170, 130 };
const Color antiquewhite3 = { 132, 108, 83 };
const Color antiquewhite4 = { 41, 34, 26 };
const Color bisque1 = { 255, 182, 115 };
const Color bisque2 = { 207, 148, 94 };
const Color bisque3 = { 132, 94, 60 };
const Color bisque4 = { 41, 30, 18 };
const Color peachpuff1 = { 255, 159, 97 };
const Color peachpuff2 = { 207, 128, 79 };
const Color peachpuff3 = { 132, 82, 50 };
const Color peachpuff4 = { 41, 25, 15 };
const Color navajowhite1 = { 255, 168, 79 };
const Color navajowhite2 = { 207, 136, 64 };
const Color navajowhite3 = { 132, 88, 41 };
const Color navajowhite4 = { 41, 27, 12 };
const Color lemonchiffon1 = { 255, 240, 132 };
const Color lemonchiffon2 = { 207, 194, 107 };
const Color lemonchiffon3 = { 132, 124, 69 };
const Color lemonchiffon4 = { 41, 39, 21 };
const Color cornsilk1 = { 255, 234, 163 };
const Color cornsilk2 = { 207, 192, 132 };
const Color cornsilk3 = { 132, 123, 85 };
const Color cornsilk4 = { 41, 38, 26 };
const Color ivory1 = { 255, 255, 212 };
const Color ivory2 = { 207, 207, 172 };
const Color ivory3 = { 132, 132, 110 };
const Color ivory4 = { 41, 41, 34 };
const Color honeydew1 = { 212, 255, 212 };
const Color honeydew2 = { 172, 207, 172 };
const Color honeydew3 = { 110, 132, 110 };
const Color honeydew4 = { 34, 41, 34 };
const Color lavenderblush1 = { 255, 212, 226 };
const Color lavenderblush2 = { 207, 172, 184 };
const Color lavenderblush3 = { 132, 110, 117 };
const Color lavenderblush4 = { 41, 34, 37 };
const Color mistyrose1 = { 255, 182, 175 };
const Color mistyrose2 = { 207, 148, 142 };
const Color mistyrose3 = { 132, 94, 91 };
const Color mistyrose4 = { 41, 30, 28 };
const Color azure1 = { 212, 255, 255 };
const Color azure2 = { 172, 207, 207 };
const Color azure3 = { 110, 132, 132 };
const Color azure4 = { 34, 41, 41 };
const Color slateblue1 = { 34, 21, 255 };
const Color slateblue2 = { 27, 16, 207 };
const Color slateblue3 = { 17, 10, 132 };
const Color slateblue4 = { 5, 3, 41 };
const Color royalblue1 = { 5, 25, 255 };
const Color royalblue2 = { 4, 20, 207 };
const Color royalblue3 = { 3, 13, 132 };
const Color royalblue4 = { 0, 4, 41 };
const Color blue1 = { 0, 0, 255 };
const Color blue2 = { 0, 0, 207 };
const Color blue3 = { 0, 0, 132 };
const Color blue4 = { 0, 0, 41 };
const Color dodgerblue1 = { 0, 45, 255 };
const Color dodgerblue2 = { 0, 37, 207 };
const Color dodgerblue3 = { 0, 24, 132 };
const Color dodgerblue4 = { 0, 7, 41 };
const Color steelblue1 = { 14, 95, 255 };
const Color steelblue2 = { 11, 78, 207 };
const Color steelblue3 = { 7, 49, 132 };
const Color steelblue4 = { 2, 15, 41 };
const Color deepskyblue1 = { 0, 107, 255 };
const Color deepskyblue2 = { 0, 86, 207 };
const Color deepskyblue3 = { 0, 56, 132 };
const Color deepskyblue4 = { 0, 17, 41 };
const Color skyblue1 = { 37, 134, 255 };
const Color skyblue2 = { 30, 108, 207 };
const Color skyblue3 = { 19, 70, 132 };
const Color skyblue4 = { 6, 21, 41 };
const Color lightskyblue1 = { 83, 177, 255 };
const Color lightskyblue2 = { 67, 144, 207 };
const Color lightskyblue3 = { 43, 92, 132 };
const Color lightskyblue4 = { 13, 28, 41 };
const Color slategray1 = { 119, 177, 255 };
const Color slategray2 = { 97, 144, 207 };
const Color slategray3 = { 61, 92, 132 };
const Color slategray4 = { 19, 28, 41 };
const Color lightsteelblue1 = { 126, 175, 255 };
const Color lightsteelblue2 = { 102, 142, 207 };
const Color lightsteelblue3 = { 65, 91, 132 };
const Color lightsteelblue4 = { 20, 28, 41 };
const Color lightblue1 = { 107, 209, 255 };
const Color lightblue2 = { 86, 170, 207 };
const Color lightblue3 = { 56, 108, 132 };
const Color lightblue4 = { 17, 34, 41 };
const Color lightcyan1 = { 172, 255, 255 };
const Color lightcyan2 = { 140, 207, 207 };
const Color lightcyan3 = { 89, 132, 132 };
const Color lightcyan4 = { 27, 41, 41 };
const Color paleturquoise1 = { 100, 255, 255 };
const Color paleturquoise2 = { 81, 207, 207 };
const Color paleturquoise3 = { 51, 132, 132 };
const Color paleturquoise4 = { 16, 41, 41 };
const Color cadetblue1 = { 54, 226, 255 };
const Color cadetblue2 = { 44, 184, 207 };
const Color cadetblue3 = { 27, 117, 132 };
const Color cadetblue4 = { 8, 37, 41 };
const Color turquoise1 = { 0, 226, 255 };
const Color turquoise2 = { 0, 184, 207 };
const Color turquoise3 = { 0, 117, 132 };
const Color turquoise4 = { 0, 37, 41 };
const Color cyan1 = { 0, 255, 255 };
const Color cyan2 = { 0, 207, 207 };
const Color cyan3 = { 0, 132, 132 };
const Color cyan4 = { 0, 41, 41 };
const Color darkslategray1 = { 52, 255, 255 };
const Color darkslategray2 = { 43, 207, 207 };
const Color darkslategray3 = { 27, 132, 132 };
const Color darkslategray4 = { 8, 41, 41 };
const Color aquamarine1 = { 31, 255, 146 };
const Color aquamarine2 = { 25, 207, 119 };
const Color aquamarine3 = { 16, 132, 75 };
const Color aquamarine4 = { 5, 41, 24 };
const Color darkseagreen1 = { 110, 255, 110 };
const Color darkseagreen2 = { 89, 207, 89 };
const Color darkseagreen3 = { 57, 132, 57 };
const Color darkseagreen4 = { 17, 41, 17 };
const Color seagreen1 = { 9, 255, 61 };
const Color seagreen2 = { 7, 207, 49 };
const Color seagreen3 = { 4, 132, 32 };
const Color seagreen4 = { 1, 41, 10 };
const Color palegreen1 = { 56, 255, 56 };
const Color palegreen2 = { 45, 207, 45 };
const Color palegreen3 = { 29, 132, 29 };
const Color palegreen4 = { 9, 41, 9 };
const Color springgreen1 = { 0, 255, 31 };
const Color springgreen2 = { 0, 207, 25 };
const Color springgreen3 = { 0, 132, 16 };
const Color springgreen4 = { 0, 41, 5 };
const Color green1 = { 0, 255, 0 };
const Color green2 = { 0, 207, 0 };
const Color green3 = { 0, 132, 0 };
const Color green4 = { 0, 41, 0 };
const Color chartreuse1 = { 31, 255, 0 };
const Color chartreuse2 = { 25, 207, 0 };
const Color chartreuse3 = { 16, 132, 0 };
const Color chartreuse4 = { 5, 41, 0 };
const Color olivedrab1 = { 108, 255, 3 };
const Color olivedrab2 = { 88, 207, 3 };
const Color olivedrab3 = { 56, 132, 1 };
const Color olivedrab4 = { 17, 41, 0 };
const Color darkolivegreen1 = { 126, 255, 21 };
const Color darkolivegreen2 = { 102, 207, 17 };
const Color darkolivegreen3 = { 65, 132, 11 };
const Color darkolivegreen4 = { 20, 41, 3 };
const Color khaki1 = { 255, 228, 44 };
const Color khaki2 = { 207, 187, 36 };
const Color khaki3 = { 132, 119, 23 };
const Color khaki4 = { 41, 37, 7 };
const Color lightgoldenrod1 = { 255, 202, 41 };
const Color lightgoldenrod2 = { 207, 163, 33 };
const Color lightgoldenrod3 = { 132, 105, 21 };
const Color lightgoldenrod4 = { 41, 33, 6 };
const Color lightyellow1 = { 255, 255, 172 };
const Color lightyellow2 = { 207, 207, 140 };
const Color lightyellow3 = { 132, 132, 89 };
const Color lightyellow4 = { 41, 41, 27 };
const Color yellow1 = { 255, 255, 0 };
const Color yellow2 = { 207, 207, 0 };
const Color yellow3 = { 132, 132, 0 };
const Color yellow4 = { 41, 41, 0 };
const Color gold1 = { 255, 152, 0 };
const Color gold2 = { 207, 124, 0 };
const Color gold3 = { 132, 79, 0 };
const Color gold4 = { 41, 24, 0 };
const Color goldenrod1 = { 255, 110, 0 };
const Color goldenrod2 = { 207, 89, 0 };
const Color goldenrod3 = { 132, 57, 0 };
const Color goldenrod4 = { 41, 17, 0 };
const Color darkgoldenrod1 = { 255, 97, 0 };
const Color darkgoldenrod2 = { 207, 79, 0 };
const Color darkgoldenrod3 = { 132, 50, 0 };
const Color darkgoldenrod4 = { 41, 15, 0 };
const Color rosybrown1 = { 255, 110, 110 };
const Color rosybrown2 = { 207, 89, 89 };
const Color rosybrown3 = { 132, 57, 57 };
const Color rosybrown4 = { 41, 17, 17 };
const Color indianred1 = { 255, 18, 18 };
const Color indianred2 = { 207, 14, 14 };
const Color indianred3 = { 132, 9, 9 };
const Color indianred4 = { 41, 3, 3 };
const Color sienna1 = { 255, 33, 5 };
const Color sienna2 = { 207, 27, 4 };
const Color sienna3 = { 132, 17, 2 };
const Color sienna4 = { 41, 5, 0 };
const Color burlywood1 = { 255, 144, 57 };
const Color burlywood2 = { 207, 117, 46 };
const Color burlywood3 = { 132, 75, 30 };
const Color burlywood4 = { 41, 23, 9 };
const Color wheat1 = { 255, 189, 98 };
const Color wheat2 = { 207, 154, 81 };
const Color wheat3 = { 132, 98, 51 };
const Color wheat4 = { 41, 30, 16 };
const Color chocolate1 = { 255, 31, 0 };
const Color chocolate2 = { 207, 25, 0 };
const Color chocolate3 = { 132, 16, 0 };
const Color chocolate4 = { 41, 5, 0 };
const Color firebrick1 = { 255, 1, 1 };
const Color firebrick2 = { 207, 1, 1 };
const Color firebrick3 = { 132, 0, 0 };
const Color firebrick4 = { 41, 0, 0 };
const Color brown1 = { 255, 4, 4 };
const Color brown2 = { 207, 3, 3 };
const Color brown3 = { 132, 2, 2 };
const Color brown4 = { 41, 0, 0 };
const Color salmon1 = { 255, 42, 17 };
const Color salmon2 = { 207, 33, 14 };
const Color salmon3 = { 132, 21, 9 };
const Color salmon4 = { 41, 6, 2 };
const Color lightsalmon1 = { 255, 62, 27 };
const Color lightsalmon2 = { 207, 50, 22 };
const Color lightsalmon3 = { 132, 33, 14 };
const Color lightsalmon4 = { 41, 10, 4 };
const Color orange1 = { 255, 69, 0 };
const Color orange2 = { 207, 56, 0 };
const Color orange3 = { 132, 36, 0 };
const Color orange4 = { 41, 11, 0 };
const Color darkorange1 = { 255, 31, 0 };
const Color darkorange2 = { 207, 25, 0 };
const Color darkorange3 = { 132, 16, 0 };
const Color darkorange4 = { 41, 5, 0 };
const Color coral1 = { 255, 22, 9 };
const Color coral2 = { 207, 18, 7 };
const Color coral3 = { 132, 11, 5 };
const Color coral4 = { 41, 3, 1 };
const Color tomato1 = { 255, 14, 5 };
const Color tomato2 = { 207, 11, 4 };
const Color tomato3 = { 132, 7, 2 };
const Color tomato4 = { 41, 2, 0 };
const Color orangered1 = { 255, 5, 0 };
const Color orangered2 = { 207, 4, 0 };
const Color orangered3 = { 132, 2, 0 };
const Color orangered4 = { 41, 0, 0 };
const Color red1 = { 255, 0, 0 };
const Color red2 = { 207, 0, 0 };
const Color red3 = { 132, 0, 0 };
const Color red4 = { 41, 0, 0 };
const Color debianred = { 152, 0, 8 };
const Color deeppink1 = { 255, 0, 48 };
const Color deeppink2 = { 207, 0, 39 };
const Color deeppink3 = { 132, 0, 25 };
const Color deeppink4 = { 41, 0, 7 };
const Color hotpink1 = { 255, 20, 89 };
const Color hotpink2 = { 207, 18, 71 };
const Color hotpink3 = { 132, 13, 45 };
const Color hotpink4 = { 41, 3, 14 };
const Color pink1 = { 255, 91, 117 };
const Color pink2 = { 207, 74, 95 };
const Color pink3 = { 132, 46, 60 };
const Color pink4 = { 41, 14, 19 };
const Color lightpink1 = { 255, 81, 97 };
const Color lightpink2 = { 207, 65, 79 };
const Color lightpink3 = { 132, 42, 50 };
const Color lightpink4 = { 41, 13, 15 };
const Color palevioletred1 = { 255, 33, 76 };
const Color palevioletred2 = { 207, 27, 61 };
const Color palevioletred3 = { 132, 17, 39 };
const Color palevioletred4 = { 41, 5, 12 };
const Color maroon1 = { 255, 2, 88 };
const Color maroon2 = { 207, 1, 71 };
const Color maroon3 = { 132, 1, 45 };
const Color maroon4 = { 41, 0, 14 };
const Color violetred1 = { 255, 3, 51 };
const Color violetred2 = { 207, 3, 42 };
const Color violetred3 = { 132, 1, 26 };
const Color violetred4 = { 41, 0, 8 };
const Color magenta1 = { 255, 0, 255 };
const Color magenta2 = { 207, 0, 207 };
const Color magenta3 = { 132, 0, 132 };
const Color magenta4 = { 41, 0, 41 };
const Color orchid1 = { 255, 34, 240 };
const Color orchid2 = { 207, 27, 194 };
const Color orchid3 = { 132, 17, 124 };
const Color orchid4 = { 41, 5, 39 };
const Color plum1 = { 255, 100, 255 };
const Color plum2 = { 207, 81, 207 };
const Color plum3 = { 132, 51, 132 };
const Color plum4 = { 41, 16, 41 };
const Color mediumorchid1 = { 172, 16, 255 };
const Color mediumorchid2 = { 140, 13, 207 };
const Color mediumorchid3 = { 89, 8, 132 };
const Color mediumorchid4 = { 27, 2, 41 };
const Color darkorchid1 = { 107, 3, 255 };
const Color darkorchid2 = { 86, 3, 207 };
const Color darkorchid3 = { 56, 1, 132 };
const Color darkorchid4 = { 17, 0, 41 };
const Color purple1 = { 57, 1, 255 };
const Color purple2 = { 46, 1, 207 };
const Color purple3 = { 30, 0, 132 };
const Color purple4 = { 9, 0, 41 };
const Color mediumpurple1 = { 76, 33, 255 };
const Color mediumpurple2 = { 61, 27, 207 };
const Color mediumpurple3 = { 39, 17, 132 };
const Color mediumpurple4 = { 12, 5, 41 };
const Color thistle1 = { 255, 175, 255 };
const Color thistle2 = { 207, 142, 207 };
const Color thistle3 = { 132, 91, 132 };
const Color thistle4 = { 41, 28, 41 };
const Color gray0 = { 0, 0, 0 };
const Color grey0 = { 0, 0, 0 };
const Color gray1 = { 0, 0, 0 };
const Color grey1 = { 0, 0, 0 };
const Color gray2 = { 0, 0, 0 };
const Color grey2 = { 0, 0, 0 };
const Color gray3 = { 0, 0, 0 };
const Color grey3 = { 0, 0, 0 };
const Color gray4 = { 0, 0, 0 };
const Color grey4 = { 0, 0, 0 };
const Color gray5 = { 0, 0, 0 };
const Color grey5 = { 0, 0, 0 };
const Color gray6 = { 0, 0, 0 };
const Color grey6 = { 0, 0, 0 };
const Color gray7 = { 0, 0, 0 };
const Color grey7 = { 0, 0, 0 };
const Color gray8 = { 0, 0, 0 };
const Color grey8 = { 0, 0, 0 };
const Color gray9 = { 0, 0, 0 };
const Color grey9 = { 0, 0, 0 };
const Color gray10 = { 0, 0, 0 };
const Color grey10 = { 0, 0, 0 };
const Color gray11 = { 0, 0, 0 };
const Color grey11 = { 0, 0, 0 };
const Color gray12 = { 0, 0, 0 };
const Color grey12 = { 0, 0, 0 };
const Color gray13 = { 0, 0, 0 };
const Color grey13 = { 0, 0, 0 };
const Color gray14 = { 0, 0, 0 };
const Color grey14 = { 0, 0, 0 };
const Color gray15 = { 0, 0, 0 };
const Color grey15 = { 0, 0, 0 };
const Color gray16 = { 1, 1, 1 };
const Color grey16 = { 1, 1, 1 };
const Color gray17 = { 1, 1, 1 };
const Color grey17 = { 1, 1, 1 };
const Color gray18 = { 1, 1, 1 };
const Color grey18 = { 1, 1, 1 };
const Color gray19 = { 1, 1, 1 };
const Color grey19 = { 1, 1, 1 };
const Color gray20 = { 2, 2, 2 };
const Color grey20 = { 2, 2, 2 };
const Color gray21 = { 2, 2, 2 };
const Color grey21 = { 2, 2, 2 };
const Color gray22 = { 2, 2, 2 };
const Color grey22 = { 2, 2, 2 };
const Color gray23 = { 3, 3, 3 };
const Color grey23 = { 3, 3, 3 };
const Color gray24 = { 3, 3, 3 };
const Color grey24 = { 3, 3, 3 };
const Color gray25 = { 4, 4, 4 };
const Color grey25 = { 4, 4, 4 };
const Color gray26 = { 4, 4, 4 };
const Color grey26 = { 4, 4, 4 };
const Color gray27 = { 5, 5, 5 };
const Color grey27 = { 5, 5, 5 };
const Color gray28 = { 5, 5, 5 };
const Color grey28 = { 5, 5, 5 };
const Color gray29 = { 6, 6, 6 };
const Color grey29 = { 6, 6, 6 };
const Color gray30 = { 7, 7, 7 };
const Color grey30 = { 7, 7, 7 };
const Color gray31 = { 7, 7, 7 };
const Color grey31 = { 7, 7, 7 };
const Color gray32 = { 8, 8, 8 };
const Color grey32 = { 8, 8, 8 };
const Color gray33 = { 9, 9, 9 };
const Color grey33 = { 9, 9, 9 };
const Color gray34 = { 10, 10, 10 };
const Color grey34 = { 10, 10, 10 };
const Color gray35 = { 10, 10, 10 };
const Color grey35 = { 10, 10, 10 };
const Color gray36 = { 11, 11, 11 };
const Color grey36 = { 11, 11, 11 };
const Color gray37 = { 12, 12, 12 };
const Color grey37 = { 12, 12, 12 };
const Color gray38 = { 14, 14, 14 };
const Color grey38 = { 14, 14, 14 };
const Color gray39 = { 14, 14, 14 };
const Color grey39 = { 14, 14, 14 };
const Color gray40 = { 16, 16, 16 };
const Color grey40 = { 16, 16, 16 };
const Color gray41 = { 17, 17, 17 };
const Color grey41 = { 17, 17, 17 };
const Color gray42 = { 18, 18, 18 };
const Color grey42 = { 18, 18, 18 };
const Color gray43 = { 20, 20, 20 };
const Color grey43 = { 20, 20, 20 };
const Color gray44 = { 21, 21, 21 };
const Color grey44 = { 21, 21, 21 };
const Color gray45 = { 23, 23, 23 };
const Color grey45 = { 23, 23, 23 };
const Color gray46 = { 24, 24, 24 };
const Color grey46 = { 24, 24, 24 };
const Color gray47 = { 26, 26, 26 };
const Color grey47 = { 26, 26, 26 };
const Color gray48 = { 27, 27, 27 };
const Color grey48 = { 27, 27, 27 };
const Color gray49 = { 30, 30, 30 };
const Color grey49 = { 30, 30, 30 };
const Color gray50 = { 31, 31, 31 };
const Color grey50 = { 31, 31, 31 };
const Color gray51 = { 33, 33, 33 };
const Color grey51 = { 33, 33, 33 };
const Color gray52 = { 36, 36, 36 };
const Color grey52 = { 36, 36, 36 };
const Color gray53 = { 37, 37, 37 };
const Color grey53 = { 37, 37, 37 };
const Color gray54 = { 40, 40, 40 };
const Color grey54 = { 40, 40, 40 };
const Color gray55 = { 42, 42, 42 };
const Color grey55 = { 42, 42, 42 };
const Color gray56 = { 44, 44, 44 };
const Color grey56 = { 44, 44, 44 };
const Color gray57 = { 46, 46, 46 };
const Color grey57 = { 46, 46, 46 };
const Color gray58 = { 49, 49, 49 };
const Color grey58 = { 49, 49, 49 };
const Color gray59 = { 51, 51, 51 };
const Color grey59 = { 51, 51, 51 };
const Color gray60 = { 55, 55, 55 };
const Color grey60 = { 55, 55, 55 };
const Color gray61 = { 58, 58, 58 };
const Color grey61 = { 58, 58, 58 };
const Color gray62 = { 60, 60, 60 };
const Color grey62 = { 60, 60, 60 };
const Color gray63 = { 64, 64, 64 };
const Color grey63 = { 64, 64, 64 };
const Color gray64 = { 66, 66, 66 };
const Color grey64 = { 66, 66, 66 };
const Color gray65 = { 70, 70, 70 };
const Color grey65 = { 70, 70, 70 };
const Color gray66 = { 72, 72, 72 };
const Color grey66 = { 72, 72, 72 };
const Color gray67 = { 76, 76, 76 };
const Color grey67 = { 76, 76, 76 };
const Color gray68 = { 79, 79, 79 };
const Color grey68 = { 79, 79, 79 };
const Color gray69 = { 83, 83, 83 };
const Color grey69 = { 83, 83, 83 };
const Color gray70 = { 88, 88, 88 };
const Color grey70 = { 88, 88, 88 };
const Color gray71 = { 91, 91, 91 };
const Color grey71 = { 91, 91, 91 };
const Color gray72 = { 95, 95, 95 };
const Color grey72 = { 95, 95, 95 };
const Color gray73 = { 98, 98, 98 };
const Color grey73 = { 98, 98, 98 };
const Color gray74 = { 103, 103, 103 };
const Color grey74 = { 103, 103, 103 };
const Color gray75 = { 107, 107, 107 };
const Color grey75 = { 107, 107, 107 };
const Color gray76 = { 112, 112, 112 };
const Color grey76 = { 112, 112, 112 };
const Color gray77 = { 115, 115, 115 };
const Color grey77 = { 115, 115, 115 };
const Color gray78 = { 121, 121, 121 };
const Color grey78 = { 121, 121, 121 };
const Color gray79 = { 124, 124, 124 };
const Color grey79 = { 124, 124, 124 };
const Color gray80 = { 130, 130, 130 };
const Color grey80 = { 130, 130, 130 };
const Color gray81 = { 136, 136, 136 };
const Color grey81 = { 136, 136, 136 };
const Color gray82 = { 140, 140, 140 };
const Color grey82 = { 140, 140, 140 };
const Color gray83 = { 146, 146, 146 };
const Color grey83 = { 146, 146, 146 };
const Color gray84 = { 150, 150, 150 };
const Color grey84 = { 150, 150, 150 };
const Color gray85 = { 157, 157, 157 };
const Color grey85 = { 157, 157, 157 };
const Color gray86 = { 161, 161, 161 };
const Color grey86 = { 161, 161, 161 };
const Color gray87 = { 168, 168, 168 };
const Color grey87 = { 168, 168, 168 };
const Color gray88 = { 172, 172, 172 };
const Color grey88 = { 172, 172, 172 };
const Color gray89 = { 179, 179, 179 };
const Color grey89 = { 179, 179, 179 };
const Color gray90 = { 184, 184, 184 };
const Color grey90 = { 184, 184, 184 };
const Color gray91 = { 192, 192, 192 };
const Color grey91 = { 192, 192, 192 };
const Color gray92 = { 199, 199, 199 };
const Color grey92 = { 199, 199, 199 };
const Color gray93 = { 204, 204, 204 };
const Color grey93 = { 204, 204, 204 };
const Color gray94 = { 212, 212, 212 };
const Color grey94 = { 212, 212, 212 };
const Color gray95 = { 217, 217, 217 };
const Color grey95 = { 217, 217, 217 };
const Color gray96 = { 226, 226, 226 };
const Color grey96 = { 226, 226, 226 };
const Color gray97 = { 231, 231, 231 };
const Color grey97 = { 231, 231, 231 };
const Color gray98 = { 240, 240, 240 };
const Color grey98 = { 240, 240, 240 };
const Color gray99 = { 246, 246, 246 };
const Color grey99 = { 246, 246, 246 };
const Color gray100 = { 255, 255, 255 };
const Color grey100 = { 255, 255, 255 };
const Color darkgrey = { 74, 74, 74 };
const Color darkgray = { 74, 74, 74 };
const Color darkblue = { 0, 0, 41 };
const Color darkcyan = { 0, 41, 41 };
const Color darkmagenta = { 41, 0, 41 };
const Color darkred = { 41, 0, 0 };
const Color lightgreen = { 45, 207, 45 };