colori 0.1.1

A simple and basic color conversion and manipulation library
Documentation
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
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
use crate::rgb::RgbColor;

pub struct Color;

impl Color {
    pub const AIR_FORCE_BLUE_RAF: RgbColor = RgbColor(93, 138, 168);
    pub const AIR_FORCE_BLUE_USAF: RgbColor = RgbColor(0, 48, 143);
    pub const AIR_SUPERIORITY_BLUE: RgbColor = RgbColor(114, 160, 193);
    pub const ALABAMA_CRIMSON: RgbColor = RgbColor(163, 38, 56);
    pub const ALICE_BLUE: RgbColor = RgbColor(240, 248, 255);
    pub const ALIZARIN_CRIMSON: RgbColor = RgbColor(227, 38, 54);
    pub const ALLOY_ORANGE: RgbColor = RgbColor(196, 98, 16);
    pub const ALMOND: RgbColor = RgbColor(239, 222, 205);
    pub const AMARANTH: RgbColor = RgbColor(229, 43, 80);
    pub const AMBER: RgbColor = RgbColor(255, 191, 0);
    pub const AMBER_SAE_ECE: RgbColor = RgbColor(255, 126, 0);
    pub const AMERICAN_ROSE: RgbColor = RgbColor(255, 3, 62);
    pub const AMETHYST: RgbColor = RgbColor(153, 102, 204);
    pub const ANDROID_GREEN: RgbColor = RgbColor(164, 198, 57);
    pub const ANTI_FLASH_WHITE: RgbColor = RgbColor(242, 243, 244);
    pub const ANTIQUE_BRASS: RgbColor = RgbColor(205, 149, 117);
    pub const ANTIQUE_FUCHSIA: RgbColor = RgbColor(145, 92, 131);
    pub const ANTIQUE_RUBY: RgbColor = RgbColor(132, 27, 45);
    pub const ANTIQUE_WHITE: RgbColor = RgbColor(250, 235, 215);
    pub const AO_ENGLISH: RgbColor = RgbColor(0, 128, 0);
    pub const APPLE_GREEN: RgbColor = RgbColor(141, 182, 0);
    pub const APRICOT: RgbColor = RgbColor(251, 206, 177);
    pub const AQUA: RgbColor = RgbColor(0, 255, 255);
    pub const AQUAMARINE: RgbColor = RgbColor(127, 255, 212);
    pub const ARMY_GREEN: RgbColor = RgbColor(75, 83, 32);
    pub const ARSENIC: RgbColor = RgbColor(59, 68, 75);
    pub const ARYLIDE_YELLOW: RgbColor = RgbColor(233, 214, 107);
    pub const ASH_GREY: RgbColor = RgbColor(178, 190, 181);
    pub const ASPARAGUS: RgbColor = RgbColor(135, 169, 107);
    pub const ATOMIC_TANGERINE: RgbColor = RgbColor(255, 153, 102);
    pub const AUBURN: RgbColor = RgbColor(165, 42, 42);
    pub const AUREOLIN: RgbColor = RgbColor(253, 238, 0);
    pub const AUROMETALSAURUS: RgbColor = RgbColor(110, 127, 128);
    pub const AVOCADO: RgbColor = RgbColor(86, 130, 3);
    pub const AZURE: RgbColor = RgbColor(0, 127, 255);
    pub const AZURE_MIST_WEB: RgbColor = RgbColor(240, 255, 255);
    pub const BABY_BLUE: RgbColor = RgbColor(137, 207, 240);
    pub const BABY_BLUE_EYES: RgbColor = RgbColor(161, 202, 241);
    pub const BABY_PINK: RgbColor = RgbColor(244, 194, 194);
    pub const BALL_BLUE: RgbColor = RgbColor(33, 171, 205);
    pub const BANANA_MANIA: RgbColor = RgbColor(250, 231, 181);
    pub const BANANA_YELLOW: RgbColor = RgbColor(255, 225, 53);
    pub const BARN_RED: RgbColor = RgbColor(124, 10, 2);
    pub const BATTLESHIP_GREY: RgbColor = RgbColor(132, 132, 130);
    pub const BAZAAR: RgbColor = RgbColor(152, 119, 123);
    pub const BEAU_BLUE: RgbColor = RgbColor(188, 212, 230);
    pub const BEAVER: RgbColor = RgbColor(159, 129, 112);
    pub const BEIGE: RgbColor = RgbColor(245, 245, 220);
    pub const BIG_DIP_O_RUBY: RgbColor = RgbColor(156, 37, 66);
    pub const BISQUE: RgbColor = RgbColor(255, 228, 196);
    pub const BISTRE: RgbColor = RgbColor(61, 43, 31);
    pub const BITTERSWEET: RgbColor = RgbColor(254, 111, 94);
    pub const BITTERSWEET_SHIMMER: RgbColor = RgbColor(191, 79, 81);
    pub const BLACK: RgbColor = RgbColor(0, 0, 0);
    pub const BLACK_BEAN: RgbColor = RgbColor(61, 12, 2);
    pub const BLACK_LEATHER_JACKET: RgbColor = RgbColor(37, 53, 41);
    pub const BLACK_OLIVE: RgbColor = RgbColor(59, 60, 54);
    pub const BLANCHED_ALMOND: RgbColor = RgbColor(255, 235, 205);
    pub const BLAST_OFF_BRONZE: RgbColor = RgbColor(165, 113, 100);
    pub const BLEU_DE_FRANCE: RgbColor = RgbColor(49, 140, 231);
    pub const BLIZZARD_BLUE: RgbColor = RgbColor(172, 229, 238);
    pub const BLOND: RgbColor = RgbColor(250, 240, 190);
    pub const BLUE: RgbColor = RgbColor(0, 0, 255);
    pub const BLUE_BELL: RgbColor = RgbColor(162, 162, 208);
    pub const BLUE_CRAYOLA: RgbColor = RgbColor(31, 117, 254);
    pub const BLUE_GRAY: RgbColor = RgbColor(102, 153, 204);
    pub const BLUE_GREEN: RgbColor = RgbColor(13, 152, 186);
    pub const BLUE_MUNSELL: RgbColor = RgbColor(0, 147, 175);
    pub const BLUE_NCS: RgbColor = RgbColor(0, 135, 189);
    pub const BLUE_PIGMENT: RgbColor = RgbColor(51, 51, 153);
    pub const BLUE_RYB: RgbColor = RgbColor(2, 71, 254);
    pub const BLUE_SAPPHIRE: RgbColor = RgbColor(18, 97, 128);
    pub const BLUE_VIOLET: RgbColor = RgbColor(138, 43, 226);
    pub const BLUSH: RgbColor = RgbColor(222, 93, 131);
    pub const BOLE: RgbColor = RgbColor(121, 68, 59);
    pub const BONDI_BLUE: RgbColor = RgbColor(0, 149, 182);
    pub const BONE: RgbColor = RgbColor(227, 218, 201);
    pub const BOSTON_UNIVERSITY_RED: RgbColor = RgbColor(204, 0, 0);
    pub const BOTTLE_GREEN: RgbColor = RgbColor(0, 106, 78);
    pub const BOYSENBERRY: RgbColor = RgbColor(135, 50, 96);
    pub const BRANDEIS_BLUE: RgbColor = RgbColor(0, 112, 255);
    pub const BRASS: RgbColor = RgbColor(181, 166, 66);
    pub const BRICK_RED: RgbColor = RgbColor(203, 65, 84);
    pub const BRIGHT_CERULEAN: RgbColor = RgbColor(29, 172, 214);
    pub const BRIGHT_GREEN: RgbColor = RgbColor(102, 255, 0);
    pub const BRIGHT_LAVENDER: RgbColor = RgbColor(191, 148, 228);
    pub const BRIGHT_MAROON: RgbColor = RgbColor(195, 33, 72);
    pub const BRIGHT_PINK: RgbColor = RgbColor(255, 0, 127);
    pub const BRIGHT_TURQUOISE: RgbColor = RgbColor(8, 232, 222);
    pub const BRIGHT_UBE: RgbColor = RgbColor(209, 159, 232);
    pub const BRILLIANT_LAVENDER: RgbColor = RgbColor(244, 187, 255);
    pub const BRILLIANT_ROSE: RgbColor = RgbColor(255, 85, 163);
    pub const BRINK_PINK: RgbColor = RgbColor(251, 96, 127);
    pub const BRITISH_RACING_GREEN: RgbColor = RgbColor(0, 66, 37);
    pub const BRONZE: RgbColor = RgbColor(205, 127, 50);
    pub const BROWN_TRADITIONAL: RgbColor = RgbColor(150, 75, 0);
    pub const BROWN_WEB: RgbColor = RgbColor(165, 42, 42);
    pub const BUBBLE_GUM: RgbColor = RgbColor(255, 193, 204);
    pub const BUBBLES: RgbColor = RgbColor(231, 254, 255);
    pub const BUFF: RgbColor = RgbColor(240, 220, 130);
    pub const BULGARIAN_ROSE: RgbColor = RgbColor(72, 6, 7);
    pub const BURGUNDY: RgbColor = RgbColor(128, 0, 32);
    pub const BURLYWOOD: RgbColor = RgbColor(222, 184, 135);
    pub const BURNT_ORANGE: RgbColor = RgbColor(204, 85, 0);
    pub const BURNT_SIENNA: RgbColor = RgbColor(233, 116, 81);
    pub const BURNT_UMBER: RgbColor = RgbColor(138, 51, 36);
    pub const BYZANTINE: RgbColor = RgbColor(189, 51, 164);
    pub const BYZANTIUM: RgbColor = RgbColor(112, 41, 99);
    pub const CADET: RgbColor = RgbColor(83, 104, 114);
    pub const CADET_BLUE: RgbColor = RgbColor(95, 158, 160);
    pub const CADET_GREY: RgbColor = RgbColor(145, 163, 176);
    pub const CADMIUM_GREEN: RgbColor = RgbColor(0, 107, 60);
    pub const CADMIUM_ORANGE: RgbColor = RgbColor(237, 135, 45);
    pub const CADMIUM_RED: RgbColor = RgbColor(227, 0, 34);
    pub const CADMIUM_YELLOW: RgbColor = RgbColor(255, 246, 0);
    pub const CAF_AU_LAIT: RgbColor = RgbColor(166, 123, 91);
    pub const CAF_NOIR: RgbColor = RgbColor(75, 54, 33);
    pub const CAL_POLY_GREEN: RgbColor = RgbColor(30, 77, 43);
    pub const CAMBRIDGE_BLUE: RgbColor = RgbColor(163, 193, 173);
    pub const CAMEL: RgbColor = RgbColor(193, 154, 107);
    pub const CAMEO_PINK: RgbColor = RgbColor(239, 187, 204);
    pub const CAMOUFLAGE_GREEN: RgbColor = RgbColor(120, 134, 107);
    pub const CANARY_YELLOW: RgbColor = RgbColor(255, 239, 0);
    pub const CANDY_APPLE_RED: RgbColor = RgbColor(255, 8, 0);
    pub const CANDY_PINK: RgbColor = RgbColor(228, 113, 122);
    pub const CAPRI: RgbColor = RgbColor(0, 191, 255);
    pub const CAPUT_MORTUUM: RgbColor = RgbColor(89, 39, 32);
    pub const CARDINAL: RgbColor = RgbColor(196, 30, 58);
    pub const CARIBBEAN_GREEN: RgbColor = RgbColor(0, 204, 153);
    pub const CARMINE: RgbColor = RgbColor(150, 0, 24);
    pub const CARMINE_M_P: RgbColor = RgbColor(215, 0, 64);
    pub const CARMINE_PINK: RgbColor = RgbColor(235, 76, 66);
    pub const CARMINE_RED: RgbColor = RgbColor(255, 0, 56);
    pub const CARNATION_PINK: RgbColor = RgbColor(255, 166, 201);
    pub const CARNELIAN: RgbColor = RgbColor(179, 27, 27);
    pub const CAROLINA_BLUE: RgbColor = RgbColor(153, 186, 221);
    pub const CARROT_ORANGE: RgbColor = RgbColor(237, 145, 33);
    pub const CATALINA_BLUE: RgbColor = RgbColor(6, 42, 120);
    pub const CEIL: RgbColor = RgbColor(146, 161, 207);
    pub const CELADON: RgbColor = RgbColor(172, 225, 175);
    pub const CELADON_BLUE: RgbColor = RgbColor(0, 123, 167);
    pub const CELADON_GREEN: RgbColor = RgbColor(47, 132, 124);
    pub const CELESTE_COLOUR: RgbColor = RgbColor(178, 255, 255);
    pub const CELESTIAL_BLUE: RgbColor = RgbColor(73, 151, 208);
    pub const CERISE: RgbColor = RgbColor(222, 49, 99);
    pub const CERISE_PINK: RgbColor = RgbColor(236, 59, 131);
    pub const CERULEAN: RgbColor = RgbColor(0, 123, 167);
    pub const CERULEAN_BLUE: RgbColor = RgbColor(42, 82, 190);
    pub const CERULEAN_FROST: RgbColor = RgbColor(109, 155, 195);
    pub const CG_BLUE: RgbColor = RgbColor(0, 122, 165);
    pub const CG_RED: RgbColor = RgbColor(224, 60, 49);
    pub const CHAMOISEE: RgbColor = RgbColor(160, 120, 90);
    pub const CHAMPAGNE: RgbColor = RgbColor(250, 214, 165);
    pub const CHARCOAL: RgbColor = RgbColor(54, 69, 79);
    pub const CHARM_PINK: RgbColor = RgbColor(230, 143, 172);
    pub const CHARTREUSE_TRADITIONAL: RgbColor = RgbColor(223, 255, 0);
    pub const CHARTREUSE_WEB: RgbColor = RgbColor(127, 255, 0);
    pub const CHERRY: RgbColor = RgbColor(222, 49, 99);
    pub const CHERRY_BLOSSOM_PINK: RgbColor = RgbColor(255, 183, 197);
    pub const CHESTNUT: RgbColor = RgbColor(205, 92, 92);
    pub const CHINA_PINK: RgbColor = RgbColor(222, 111, 161);
    pub const CHINA_ROSE: RgbColor = RgbColor(168, 81, 110);
    pub const CHINESE_RED: RgbColor = RgbColor(170, 56, 30);
    pub const CHOCOLATE_TRADITIONAL: RgbColor = RgbColor(123, 63, 0);
    pub const CHOCOLATE_WEB: RgbColor = RgbColor(210, 105, 30);
    pub const CHROME_YELLOW: RgbColor = RgbColor(255, 167, 0);
    pub const CINEREOUS: RgbColor = RgbColor(152, 129, 123);
    pub const CINNABAR: RgbColor = RgbColor(227, 66, 52);
    pub const CINNAMON: RgbColor = RgbColor(210, 105, 30);
    pub const CITRINE: RgbColor = RgbColor(228, 208, 10);
    pub const CLASSIC_ROSE: RgbColor = RgbColor(251, 204, 231);
    pub const COBALT: RgbColor = RgbColor(0, 71, 171);
    pub const COCOA_BROWN: RgbColor = RgbColor(210, 105, 30);
    pub const COFFEE: RgbColor = RgbColor(111, 78, 55);
    pub const COLUMBIA_BLUE: RgbColor = RgbColor(155, 221, 255);
    pub const CONGO_PINK: RgbColor = RgbColor(248, 131, 121);
    pub const COOL_BLACK: RgbColor = RgbColor(0, 46, 99);
    pub const COOL_GREY: RgbColor = RgbColor(140, 146, 172);
    pub const COPPER: RgbColor = RgbColor(184, 115, 51);
    pub const COPPER_CRAYOLA: RgbColor = RgbColor(218, 138, 103);
    pub const COPPER_PENNY: RgbColor = RgbColor(173, 111, 105);
    pub const COPPER_RED: RgbColor = RgbColor(203, 109, 81);
    pub const COPPER_ROSE: RgbColor = RgbColor(153, 102, 102);
    pub const COQUELICOT: RgbColor = RgbColor(255, 56, 0);
    pub const CORAL: RgbColor = RgbColor(255, 127, 80);
    pub const CORAL_PINK: RgbColor = RgbColor(248, 131, 121);
    pub const CORAL_RED: RgbColor = RgbColor(255, 64, 64);
    pub const CORDOVAN: RgbColor = RgbColor(137, 63, 69);
    pub const CORN: RgbColor = RgbColor(251, 236, 93);
    pub const CORNELL_RED: RgbColor = RgbColor(179, 27, 27);
    pub const CORNFLOWER_BLUE: RgbColor = RgbColor(100, 149, 237);
    pub const CORNSILK: RgbColor = RgbColor(255, 248, 220);
    pub const COSMIC_LATTE: RgbColor = RgbColor(255, 248, 231);
    pub const COTTON_CANDY: RgbColor = RgbColor(255, 188, 217);
    pub const CREAM: RgbColor = RgbColor(255, 253, 208);
    pub const CRIMSON: RgbColor = RgbColor(220, 20, 60);
    pub const CRIMSON_GLORY: RgbColor = RgbColor(190, 0, 50);
    pub const CYAN: RgbColor = RgbColor(0, 255, 255);
    pub const CYAN_PROCESS: RgbColor = RgbColor(0, 183, 235);
    pub const DAFFODIL: RgbColor = RgbColor(255, 255, 49);
    pub const DANDELION: RgbColor = RgbColor(240, 225, 48);
    pub const DARK_BLUE: RgbColor = RgbColor(0, 0, 139);
    pub const DARK_BROWN: RgbColor = RgbColor(101, 67, 33);
    pub const DARK_BYZANTIUM: RgbColor = RgbColor(93, 57, 84);
    pub const DARK_CANDY_APPLE_RED: RgbColor = RgbColor(164, 0, 0);
    pub const DARK_CERULEAN: RgbColor = RgbColor(8, 69, 126);
    pub const DARK_CHESTNUT: RgbColor = RgbColor(152, 105, 96);
    pub const DARK_CORAL: RgbColor = RgbColor(205, 91, 69);
    pub const DARK_CYAN: RgbColor = RgbColor(0, 139, 139);
    pub const DARK_ELECTRIC_BLUE: RgbColor = RgbColor(83, 104, 120);
    pub const DARK_GOLDENROD: RgbColor = RgbColor(184, 134, 11);
    pub const DARK_GRAY: RgbColor = RgbColor(169, 169, 169);
    pub const DARK_GREEN: RgbColor = RgbColor(1, 50, 32);
    pub const DARK_IMPERIAL_BLUE: RgbColor = RgbColor(0, 65, 106);
    pub const DARK_JUNGLE_GREEN: RgbColor = RgbColor(26, 36, 33);
    pub const DARK_KHAKI: RgbColor = RgbColor(189, 183, 107);
    pub const DARK_LAVA: RgbColor = RgbColor(72, 60, 50);
    pub const DARK_LAVENDER: RgbColor = RgbColor(115, 79, 150);
    pub const DARK_MAGENTA: RgbColor = RgbColor(139, 0, 139);
    pub const DARK_MIDNIGHT_BLUE: RgbColor = RgbColor(0, 51, 102);
    pub const DARK_OLIVE_GREEN: RgbColor = RgbColor(85, 107, 47);
    pub const DARK_ORANGE: RgbColor = RgbColor(255, 140, 0);
    pub const DARK_ORCHID: RgbColor = RgbColor(153, 50, 204);
    pub const DARK_PASTEL_BLUE: RgbColor = RgbColor(119, 158, 203);
    pub const DARK_PASTEL_GREEN: RgbColor = RgbColor(3, 192, 60);
    pub const DARK_PASTEL_PURPLE: RgbColor = RgbColor(150, 111, 214);
    pub const DARK_PASTEL_RED: RgbColor = RgbColor(194, 59, 34);
    pub const DARK_PINK: RgbColor = RgbColor(231, 84, 128);
    pub const DARK_POWDER_BLUE: RgbColor = RgbColor(0, 51, 153);
    pub const DARK_RASPBERRY: RgbColor = RgbColor(135, 38, 87);
    pub const DARK_RED: RgbColor = RgbColor(139, 0, 0);
    pub const DARK_SALMON: RgbColor = RgbColor(233, 150, 122);
    pub const DARK_SCARLET: RgbColor = RgbColor(86, 3, 25);
    pub const DARK_SEA_GREEN: RgbColor = RgbColor(143, 188, 143);
    pub const DARK_SIENNA: RgbColor = RgbColor(60, 20, 20);
    pub const DARK_SLATE_BLUE: RgbColor = RgbColor(72, 61, 139);
    pub const DARK_SLATE_GRAY: RgbColor = RgbColor(47, 79, 79);
    pub const DARK_SPRING_GREEN: RgbColor = RgbColor(23, 114, 69);
    pub const DARK_TAN: RgbColor = RgbColor(145, 129, 81);
    pub const DARK_TANGERINE: RgbColor = RgbColor(255, 168, 18);
    pub const DARK_TAUPE: RgbColor = RgbColor(72, 60, 50);
    pub const DARK_TERRA_COTTA: RgbColor = RgbColor(204, 78, 92);
    pub const DARK_TURQUOISE: RgbColor = RgbColor(0, 206, 209);
    pub const DARK_VIOLET: RgbColor = RgbColor(148, 0, 211);
    pub const DARK_YELLOW: RgbColor = RgbColor(155, 135, 12);
    pub const DARTMOUTH_GREEN: RgbColor = RgbColor(0, 112, 60);
    pub const DAVY_S_GREY: RgbColor = RgbColor(85, 85, 85);
    pub const DEBIAN_RED: RgbColor = RgbColor(215, 10, 83);
    pub const DEEP_CARMINE: RgbColor = RgbColor(169, 32, 62);
    pub const DEEP_CARMINE_PINK: RgbColor = RgbColor(239, 48, 56);
    pub const DEEP_CARROT_ORANGE: RgbColor = RgbColor(233, 105, 44);
    pub const DEEP_CERISE: RgbColor = RgbColor(218, 50, 135);
    pub const DEEP_CHAMPAGNE: RgbColor = RgbColor(250, 214, 165);
    pub const DEEP_CHESTNUT: RgbColor = RgbColor(185, 78, 72);
    pub const DEEP_COFFEE: RgbColor = RgbColor(112, 66, 65);
    pub const DEEP_FUCHSIA: RgbColor = RgbColor(193, 84, 193);
    pub const DEEP_JUNGLE_GREEN: RgbColor = RgbColor(0, 75, 73);
    pub const DEEP_LILAC: RgbColor = RgbColor(153, 85, 187);
    pub const DEEP_MAGENTA: RgbColor = RgbColor(204, 0, 204);
    pub const DEEP_PEACH: RgbColor = RgbColor(255, 203, 164);
    pub const DEEP_PINK: RgbColor = RgbColor(255, 20, 147);
    pub const DEEP_RUBY: RgbColor = RgbColor(132, 63, 91);
    pub const DEEP_SAFFRON: RgbColor = RgbColor(255, 153, 51);
    pub const DEEP_SKY_BLUE: RgbColor = RgbColor(0, 191, 255);
    pub const DEEP_TUSCAN_RED: RgbColor = RgbColor(102, 66, 77);
    pub const DENIM: RgbColor = RgbColor(21, 96, 189);
    pub const DESERT: RgbColor = RgbColor(193, 154, 107);
    pub const DESERT_SAND: RgbColor = RgbColor(237, 201, 175);
    pub const DIM_GRAY: RgbColor = RgbColor(105, 105, 105);
    pub const DODGER_BLUE: RgbColor = RgbColor(30, 144, 255);
    pub const DOGWOOD_ROSE: RgbColor = RgbColor(215, 24, 104);
    pub const DOLLAR_BILL: RgbColor = RgbColor(133, 187, 101);
    pub const DRAB: RgbColor = RgbColor(150, 113, 23);
    pub const DUKE_BLUE: RgbColor = RgbColor(0, 0, 156);
    pub const EARTH_YELLOW: RgbColor = RgbColor(225, 169, 95);
    pub const EBONY: RgbColor = RgbColor(85, 93, 80);
    pub const ECRU: RgbColor = RgbColor(194, 178, 128);
    pub const EGGPLANT: RgbColor = RgbColor(97, 64, 81);
    pub const EGGSHELL: RgbColor = RgbColor(240, 234, 214);
    pub const EGYPTIAN_BLUE: RgbColor = RgbColor(16, 52, 166);
    pub const ELECTRIC_BLUE: RgbColor = RgbColor(125, 249, 255);
    pub const ELECTRIC_CRIMSON: RgbColor = RgbColor(255, 0, 63);
    pub const ELECTRIC_CYAN: RgbColor = RgbColor(0, 255, 255);
    pub const ELECTRIC_GREEN: RgbColor = RgbColor(0, 255, 0);
    pub const ELECTRIC_INDIGO: RgbColor = RgbColor(111, 0, 255);
    pub const ELECTRIC_LAVENDER: RgbColor = RgbColor(244, 187, 255);
    pub const ELECTRIC_LIME: RgbColor = RgbColor(204, 255, 0);
    pub const ELECTRIC_PURPLE: RgbColor = RgbColor(191, 0, 255);
    pub const ELECTRIC_ULTRAMARINE: RgbColor = RgbColor(63, 0, 255);
    pub const ELECTRIC_VIOLET: RgbColor = RgbColor(143, 0, 255);
    pub const ELECTRIC_YELLOW: RgbColor = RgbColor(255, 255, 0);
    pub const EMERALD: RgbColor = RgbColor(80, 200, 120);
    pub const ENGLISH_LAVENDER: RgbColor = RgbColor(180, 131, 149);
    pub const ETON_BLUE: RgbColor = RgbColor(150, 200, 162);
    pub const FALLOW: RgbColor = RgbColor(193, 154, 107);
    pub const FALU_RED: RgbColor = RgbColor(128, 24, 24);
    pub const FANDANGO: RgbColor = RgbColor(181, 51, 137);
    pub const FASHION_FUCHSIA: RgbColor = RgbColor(244, 0, 161);
    pub const FAWN: RgbColor = RgbColor(229, 170, 112);
    pub const FELDGRAU: RgbColor = RgbColor(77, 93, 83);
    pub const FERN_GREEN: RgbColor = RgbColor(79, 121, 66);
    pub const FERRARI_RED: RgbColor = RgbColor(255, 40, 0);
    pub const FIELD_DRAB: RgbColor = RgbColor(108, 84, 30);
    pub const FIRE_ENGINE_RED: RgbColor = RgbColor(206, 32, 41);
    pub const FIREBRICK: RgbColor = RgbColor(178, 34, 34);
    pub const FLAME: RgbColor = RgbColor(226, 88, 34);
    pub const FLAMINGO_PINK: RgbColor = RgbColor(252, 142, 172);
    pub const FLAVESCENT: RgbColor = RgbColor(247, 233, 142);
    pub const FLAX: RgbColor = RgbColor(238, 220, 130);
    pub const FLORAL_WHITE: RgbColor = RgbColor(255, 250, 240);
    pub const FLUORESCENT_ORANGE: RgbColor = RgbColor(255, 191, 0);
    pub const FLUORESCENT_PINK: RgbColor = RgbColor(255, 20, 147);
    pub const FLUORESCENT_YELLOW: RgbColor = RgbColor(204, 255, 0);
    pub const FOLLY: RgbColor = RgbColor(255, 0, 79);
    pub const FOREST_GREEN_TRADITIONAL: RgbColor = RgbColor(1, 68, 33);
    pub const FOREST_GREEN_WEB: RgbColor = RgbColor(34, 139, 34);
    pub const FRENCH_BEIGE: RgbColor = RgbColor(166, 123, 91);
    pub const FRENCH_BLUE: RgbColor = RgbColor(0, 114, 187);
    pub const FRENCH_LILAC: RgbColor = RgbColor(134, 96, 142);
    pub const FRENCH_LIME: RgbColor = RgbColor(204, 255, 0);
    pub const FRENCH_RASPBERRY: RgbColor = RgbColor(199, 44, 72);
    pub const FRENCH_ROSE: RgbColor = RgbColor(246, 74, 138);
    pub const FUCHSIA: RgbColor = RgbColor(255, 0, 255);
    pub const FUCHSIA_CRAYOLA: RgbColor = RgbColor(193, 84, 193);
    pub const FUCHSIA_PINK: RgbColor = RgbColor(255, 119, 255);
    pub const FUCHSIA_ROSE: RgbColor = RgbColor(199, 67, 117);
    pub const FULVOUS: RgbColor = RgbColor(228, 132, 0);
    pub const FUZZY_WUZZY: RgbColor = RgbColor(204, 102, 102);
    pub const GAINSBORO: RgbColor = RgbColor(220, 220, 220);
    pub const GAMBOGE: RgbColor = RgbColor(228, 155, 15);
    pub const GHOST_WHITE: RgbColor = RgbColor(248, 248, 255);
    pub const GINGER: RgbColor = RgbColor(176, 101, 0);
    pub const GLAUCOUS: RgbColor = RgbColor(96, 130, 182);
    pub const GLITTER: RgbColor = RgbColor(230, 232, 250);
    pub const GOLD_METALLIC: RgbColor = RgbColor(212, 175, 55);
    pub const GOLD_WEB_GOLDEN: RgbColor = RgbColor(255, 215, 0);
    pub const GOLDEN_BROWN: RgbColor = RgbColor(153, 101, 21);
    pub const GOLDEN_POPPY: RgbColor = RgbColor(252, 194, 0);
    pub const GOLDEN_YELLOW: RgbColor = RgbColor(255, 223, 0);
    pub const GOLDENROD: RgbColor = RgbColor(218, 165, 32);
    pub const GRANNY_SMITH_APPLE: RgbColor = RgbColor(168, 228, 160);
    pub const GRAY: RgbColor = RgbColor(128, 128, 128);
    pub const GRAY_ASPARAGUS: RgbColor = RgbColor(70, 89, 69);
    pub const GRAY_HTML_CSS_GRAY: RgbColor = RgbColor(128, 128, 128);
    pub const GRAY_X11_GRAY: RgbColor = RgbColor(190, 190, 190);
    pub const GREEN_COLOR_WHEEL_X11_GREEN: RgbColor = RgbColor(0, 255, 0);
    pub const GREEN_CRAYOLA: RgbColor = RgbColor(28, 172, 120);
    pub const GREEN_HTML_CSS_GREEN: RgbColor = RgbColor(0, 128, 0);
    pub const GREEN_MUNSELL: RgbColor = RgbColor(0, 168, 119);
    pub const GREEN_NCS: RgbColor = RgbColor(0, 159, 107);
    pub const GREEN_PIGMENT: RgbColor = RgbColor(0, 165, 80);
    pub const GREEN_RYB: RgbColor = RgbColor(102, 176, 50);
    pub const GREEN_YELLOW: RgbColor = RgbColor(173, 255, 47);
    pub const GRULLO: RgbColor = RgbColor(169, 154, 134);
    pub const GUPPIE_GREEN: RgbColor = RgbColor(0, 255, 127);
    pub const HALAY_BE: RgbColor = RgbColor(102, 56, 84);
    pub const HAN_BLUE: RgbColor = RgbColor(68, 108, 207);
    pub const HAN_PURPLE: RgbColor = RgbColor(82, 24, 250);
    pub const HANSA_YELLOW: RgbColor = RgbColor(233, 214, 107);
    pub const HARLEQUIN: RgbColor = RgbColor(63, 255, 0);
    pub const HARVARD_CRIMSON: RgbColor = RgbColor(201, 0, 22);
    pub const HARVEST_GOLD: RgbColor = RgbColor(218, 145, 0);
    pub const HEART_GOLD: RgbColor = RgbColor(128, 128, 0);
    pub const HELIOTROPE: RgbColor = RgbColor(223, 115, 255);
    pub const HOLLYWOOD_CERISE: RgbColor = RgbColor(244, 0, 161);
    pub const HONEYDEW: RgbColor = RgbColor(240, 255, 240);
    pub const HONOLULU_BLUE: RgbColor = RgbColor(0, 127, 191);
    pub const HOOKER_S_GREEN: RgbColor = RgbColor(73, 121, 107);
    pub const HOT_MAGENTA: RgbColor = RgbColor(255, 29, 206);
    pub const HOT_PINK: RgbColor = RgbColor(255, 105, 180);
    pub const HUNTER_GREEN: RgbColor = RgbColor(53, 94, 59);
    pub const ICEBERG: RgbColor = RgbColor(113, 166, 210);
    pub const ICTERINE: RgbColor = RgbColor(252, 247, 94);
    pub const IMPERIAL_BLUE: RgbColor = RgbColor(0, 35, 149);
    pub const INCHWORM: RgbColor = RgbColor(178, 236, 93);
    pub const INDIA_GREEN: RgbColor = RgbColor(19, 136, 8);
    pub const INDIAN_RED: RgbColor = RgbColor(205, 92, 92);
    pub const INDIAN_YELLOW: RgbColor = RgbColor(227, 168, 87);
    pub const INDIGO: RgbColor = RgbColor(111, 0, 255);
    pub const INDIGO_DYE: RgbColor = RgbColor(0, 65, 106);
    pub const INDIGO_WEB: RgbColor = RgbColor(75, 0, 130);
    pub const INTERNATIONAL_KLEIN_BLUE: RgbColor = RgbColor(0, 47, 167);
    pub const INTERNATIONAL_ORANGE_AEROSPACE: RgbColor = RgbColor(255, 79, 0);
    pub const INTERNATIONAL_ORANGE_ENGINEERING: RgbColor = RgbColor(186, 22, 12);
    pub const INTERNATIONAL_ORANGE_GOLDEN_GATE_BRIDGE: RgbColor = RgbColor(192, 54, 44);
    pub const IRIS: RgbColor = RgbColor(90, 79, 207);
    pub const ISABELLINE: RgbColor = RgbColor(244, 240, 236);
    pub const ISLAMIC_GREEN: RgbColor = RgbColor(0, 144, 0);
    pub const IVORY: RgbColor = RgbColor(255, 255, 240);
    pub const JADE: RgbColor = RgbColor(0, 168, 107);
    pub const JASMINE: RgbColor = RgbColor(248, 222, 126);
    pub const JASPER: RgbColor = RgbColor(215, 59, 62);
    pub const JAZZBERRY_JAM: RgbColor = RgbColor(165, 11, 94);
    pub const JET: RgbColor = RgbColor(52, 52, 52);
    pub const JONQUIL: RgbColor = RgbColor(250, 218, 94);
    pub const JUNE_BUD: RgbColor = RgbColor(189, 218, 87);
    pub const JUNGLE_GREEN: RgbColor = RgbColor(41, 171, 135);
    pub const KELLY_GREEN: RgbColor = RgbColor(76, 187, 23);
    pub const KENYAN_COPPER: RgbColor = RgbColor(124, 28, 5);
    pub const KHAKI_HTML_CSS_KHAKI: RgbColor = RgbColor(195, 176, 145);
    pub const KHAKI_X11_LIGHT_KHAKI: RgbColor = RgbColor(240, 230, 140);
    pub const KU_CRIMSON: RgbColor = RgbColor(232, 0, 13);
    pub const LA_SALLE_GREEN: RgbColor = RgbColor(8, 120, 48);
    pub const LANGUID_LAVENDER: RgbColor = RgbColor(214, 202, 221);
    pub const LAPIS_LAZULI: RgbColor = RgbColor(38, 97, 156);
    pub const LASER_LEMON: RgbColor = RgbColor(254, 254, 34);
    pub const LAUREL_GREEN: RgbColor = RgbColor(169, 186, 157);
    pub const LAVA: RgbColor = RgbColor(207, 16, 32);
    pub const LAVENDER_BLUE: RgbColor = RgbColor(204, 204, 255);
    pub const LAVENDER_BLUSH: RgbColor = RgbColor(255, 240, 245);
    pub const LAVENDER_FLORAL: RgbColor = RgbColor(181, 126, 220);
    pub const LAVENDER_GRAY: RgbColor = RgbColor(196, 195, 208);
    pub const LAVENDER_INDIGO: RgbColor = RgbColor(148, 87, 235);
    pub const LAVENDER_MAGENTA: RgbColor = RgbColor(238, 130, 238);
    pub const LAVENDER_MIST: RgbColor = RgbColor(230, 230, 250);
    pub const LAVENDER_PINK: RgbColor = RgbColor(251, 174, 210);
    pub const LAVENDER_PURPLE: RgbColor = RgbColor(150, 123, 182);
    pub const LAVENDER_ROSE: RgbColor = RgbColor(251, 160, 227);
    pub const LAVENDER_WEB: RgbColor = RgbColor(230, 230, 250);
    pub const LAWN_GREEN: RgbColor = RgbColor(124, 252, 0);
    pub const LEMON: RgbColor = RgbColor(255, 247, 0);
    pub const LEMON_CHIFFON: RgbColor = RgbColor(255, 250, 205);
    pub const LEMON_LIME: RgbColor = RgbColor(227, 255, 0);
    pub const LICORICE: RgbColor = RgbColor(26, 17, 16);
    pub const LIGHT_APRICOT: RgbColor = RgbColor(253, 213, 177);
    pub const LIGHT_BLUE: RgbColor = RgbColor(173, 216, 230);
    pub const LIGHT_BROWN: RgbColor = RgbColor(181, 101, 29);
    pub const LIGHT_CARMINE_PINK: RgbColor = RgbColor(230, 103, 113);
    pub const LIGHT_CORAL: RgbColor = RgbColor(240, 128, 128);
    pub const LIGHT_CORNFLOWER_BLUE: RgbColor = RgbColor(147, 204, 234);
    pub const LIGHT_CRIMSON: RgbColor = RgbColor(245, 105, 145);
    pub const LIGHT_CYAN: RgbColor = RgbColor(224, 255, 255);
    pub const LIGHT_FUCHSIA_PINK: RgbColor = RgbColor(249, 132, 239);
    pub const LIGHT_GOLDENROD_YELLOW: RgbColor = RgbColor(250, 250, 210);
    pub const LIGHT_GRAY: RgbColor = RgbColor(211, 211, 211);
    pub const LIGHT_GREEN: RgbColor = RgbColor(144, 238, 144);
    pub const LIGHT_KHAKI: RgbColor = RgbColor(240, 230, 140);
    pub const LIGHT_PASTEL_PURPLE: RgbColor = RgbColor(177, 156, 217);
    pub const LIGHT_PINK: RgbColor = RgbColor(255, 182, 193);
    pub const LIGHT_RED_OCHRE: RgbColor = RgbColor(233, 116, 81);
    pub const LIGHT_SALMON: RgbColor = RgbColor(255, 160, 122);
    pub const LIGHT_SALMON_PINK: RgbColor = RgbColor(255, 153, 153);
    pub const LIGHT_SEA_GREEN: RgbColor = RgbColor(32, 178, 170);
    pub const LIGHT_SKY_BLUE: RgbColor = RgbColor(135, 206, 250);
    pub const LIGHT_SLATE_GRAY: RgbColor = RgbColor(119, 136, 153);
    pub const LIGHT_TAUPE: RgbColor = RgbColor(179, 139, 109);
    pub const LIGHT_THULIAN_PINK: RgbColor = RgbColor(230, 143, 172);
    pub const LIGHT_YELLOW: RgbColor = RgbColor(255, 255, 224);
    pub const LILAC: RgbColor = RgbColor(200, 162, 200);
    pub const LIME_COLOR_WHEEL: RgbColor = RgbColor(191, 255, 0);
    pub const LIME_GREEN: RgbColor = RgbColor(50, 205, 50);
    pub const LIME_WEB_X11_GREEN: RgbColor = RgbColor(0, 255, 0);
    pub const LIMERICK: RgbColor = RgbColor(157, 194, 9);
    pub const LINCOLN_GREEN: RgbColor = RgbColor(25, 89, 5);
    pub const LINEN: RgbColor = RgbColor(250, 240, 230);
    pub const LION: RgbColor = RgbColor(193, 154, 107);
    pub const LITTLE_BOY_BLUE: RgbColor = RgbColor(108, 160, 220);
    pub const LIVER: RgbColor = RgbColor(83, 75, 79);
    pub const LUST: RgbColor = RgbColor(230, 32, 32);
    pub const MAGENTA: RgbColor = RgbColor(255, 0, 255);
    pub const MAGENTA_DYE: RgbColor = RgbColor(202, 31, 123);
    pub const MAGENTA_PROCESS: RgbColor = RgbColor(255, 0, 144);
    pub const MAGIC_MINT: RgbColor = RgbColor(170, 240, 209);
    pub const MAGNOLIA: RgbColor = RgbColor(248, 244, 255);
    pub const MAHOGANY: RgbColor = RgbColor(192, 64, 0);
    pub const MAIZE: RgbColor = RgbColor(251, 236, 93);
    pub const MAJORELLE_BLUE: RgbColor = RgbColor(96, 80, 220);
    pub const MALACHITE: RgbColor = RgbColor(11, 218, 81);
    pub const MANATEE: RgbColor = RgbColor(151, 154, 170);
    pub const MANGO_TANGO: RgbColor = RgbColor(255, 130, 67);
    pub const MANTIS: RgbColor = RgbColor(116, 195, 101);
    pub const MARDI_GRAS: RgbColor = RgbColor(136, 0, 133);
    pub const MAROON_CRAYOLA: RgbColor = RgbColor(195, 33, 72);
    pub const MAROON_HTML_CSS: RgbColor = RgbColor(128, 0, 0);
    pub const MAROON_X11: RgbColor = RgbColor(176, 48, 96);
    pub const MAUVE: RgbColor = RgbColor(224, 176, 255);
    pub const MAUVE_TAUPE: RgbColor = RgbColor(145, 95, 109);
    pub const MAUVELOUS: RgbColor = RgbColor(239, 152, 170);
    pub const MAYA_BLUE: RgbColor = RgbColor(115, 194, 251);
    pub const MEAT_BROWN: RgbColor = RgbColor(229, 183, 59);
    pub const MEDIUM_AQUAMARINE: RgbColor = RgbColor(102, 221, 170);
    pub const MEDIUM_BLUE: RgbColor = RgbColor(0, 0, 205);
    pub const MEDIUM_CANDY_APPLE_RED: RgbColor = RgbColor(226, 6, 44);
    pub const MEDIUM_CARMINE: RgbColor = RgbColor(175, 64, 53);
    pub const MEDIUM_CHAMPAGNE: RgbColor = RgbColor(243, 229, 171);
    pub const MEDIUM_ELECTRIC_BLUE: RgbColor = RgbColor(3, 80, 150);
    pub const MEDIUM_JUNGLE_GREEN: RgbColor = RgbColor(28, 53, 45);
    pub const MEDIUM_LAVENDER_MAGENTA: RgbColor = RgbColor(221, 160, 221);
    pub const MEDIUM_ORCHID: RgbColor = RgbColor(186, 85, 211);
    pub const MEDIUM_PERSIAN_BLUE: RgbColor = RgbColor(0, 103, 165);
    pub const MEDIUM_PURPLE: RgbColor = RgbColor(147, 112, 219);
    pub const MEDIUM_RED_VIOLET: RgbColor = RgbColor(187, 51, 133);
    pub const MEDIUM_RUBY: RgbColor = RgbColor(170, 64, 105);
    pub const MEDIUM_SEA_GREEN: RgbColor = RgbColor(60, 179, 113);
    pub const MEDIUM_SLATE_BLUE: RgbColor = RgbColor(123, 104, 238);
    pub const MEDIUM_SPRING_BUD: RgbColor = RgbColor(201, 220, 135);
    pub const MEDIUM_SPRING_GREEN: RgbColor = RgbColor(0, 250, 154);
    pub const MEDIUM_TAUPE: RgbColor = RgbColor(103, 76, 71);
    pub const MEDIUM_TURQUOISE: RgbColor = RgbColor(72, 209, 204);
    pub const MEDIUM_TUSCAN_RED: RgbColor = RgbColor(121, 68, 59);
    pub const MEDIUM_VERMILION: RgbColor = RgbColor(217, 96, 59);
    pub const MEDIUM_VIOLET_RED: RgbColor = RgbColor(199, 21, 133);
    pub const MELLOW_APRICOT: RgbColor = RgbColor(248, 184, 120);
    pub const MELLOW_YELLOW: RgbColor = RgbColor(248, 222, 126);
    pub const MELON: RgbColor = RgbColor(253, 188, 180);
    pub const MIDNIGHT_BLUE: RgbColor = RgbColor(25, 25, 112);
    pub const MIDNIGHT_GREEN_EAGLE_GREEN: RgbColor = RgbColor(0, 73, 83);
    pub const MIKADO_YELLOW: RgbColor = RgbColor(255, 196, 12);
    pub const MINT: RgbColor = RgbColor(62, 180, 137);
    pub const MINT_CREAM: RgbColor = RgbColor(245, 255, 250);
    pub const MINT_GREEN: RgbColor = RgbColor(152, 255, 152);
    pub const MISTY_ROSE: RgbColor = RgbColor(255, 228, 225);
    pub const MOCCASIN: RgbColor = RgbColor(250, 235, 215);
    pub const MODE_BEIGE: RgbColor = RgbColor(150, 113, 23);
    pub const MOONSTONE_BLUE: RgbColor = RgbColor(115, 169, 194);
    pub const MORDANT_RED_19: RgbColor = RgbColor(174, 12, 0);
    pub const MOSS_GREEN: RgbColor = RgbColor(173, 223, 173);
    pub const MOUNTAIN_MEADOW: RgbColor = RgbColor(48, 186, 143);
    pub const MOUNTBATTEN_PINK: RgbColor = RgbColor(153, 122, 141);
    pub const MSU_GREEN: RgbColor = RgbColor(24, 69, 59);
    pub const MULBERRY: RgbColor = RgbColor(197, 75, 140);
    pub const MUSTARD: RgbColor = RgbColor(255, 219, 88);
    pub const MYRTLE: RgbColor = RgbColor(33, 66, 30);
    pub const NADESHIKO_PINK: RgbColor = RgbColor(246, 173, 198);
    pub const NAPIER_GREEN: RgbColor = RgbColor(42, 128, 0);
    pub const NAPLES_YELLOW: RgbColor = RgbColor(250, 218, 94);
    pub const NAVAJO_WHITE: RgbColor = RgbColor(255, 222, 173);
    pub const NAVY_BLUE: RgbColor = RgbColor(0, 0, 128);
    pub const NEON_CARROT: RgbColor = RgbColor(255, 163, 67);
    pub const NEON_FUCHSIA: RgbColor = RgbColor(254, 65, 100);
    pub const NEON_GREEN: RgbColor = RgbColor(57, 255, 20);
    pub const NEW_YORK_PINK: RgbColor = RgbColor(215, 131, 127);
    pub const NON_PHOTO_BLUE: RgbColor = RgbColor(164, 221, 237);
    pub const NORTH_TEXAS_GREEN: RgbColor = RgbColor(5, 144, 51);
    pub const OCEAN_BOAT_BLUE: RgbColor = RgbColor(0, 119, 190);
    pub const OCHRE: RgbColor = RgbColor(204, 119, 34);
    pub const OFFICE_GREEN: RgbColor = RgbColor(0, 128, 0);
    pub const OLD_GOLD: RgbColor = RgbColor(207, 181, 59);
    pub const OLD_LACE: RgbColor = RgbColor(253, 245, 230);
    pub const OLD_LAVENDER: RgbColor = RgbColor(121, 104, 120);
    pub const OLD_MAUVE: RgbColor = RgbColor(103, 49, 71);
    pub const OLD_ROSE: RgbColor = RgbColor(192, 128, 129);
    pub const OLIVE: RgbColor = RgbColor(128, 128, 0);
    pub const OLIVE_DRAB_7: RgbColor = RgbColor(60, 52, 31);
    pub const OLIVE_DRAB_WEB_OLIVE_DRAB_3: RgbColor = RgbColor(107, 142, 35);
    pub const OLIVINE: RgbColor = RgbColor(154, 185, 115);
    pub const ONYX: RgbColor = RgbColor(53, 56, 57);
    pub const OPERA_MAUVE: RgbColor = RgbColor(183, 132, 167);
    pub const ORANGE_COLOR_WHEEL: RgbColor = RgbColor(255, 127, 0);
    pub const ORANGE_PEEL: RgbColor = RgbColor(255, 159, 0);
    pub const ORANGE_RED: RgbColor = RgbColor(255, 69, 0);
    pub const ORANGE_RYB: RgbColor = RgbColor(251, 153, 2);
    pub const ORANGE_WEB_COLOR: RgbColor = RgbColor(255, 165, 0);
    pub const ORCHID: RgbColor = RgbColor(218, 112, 214);
    pub const OTTER_BROWN: RgbColor = RgbColor(101, 67, 33);
    pub const OU_CRIMSON_RED: RgbColor = RgbColor(153, 0, 0);
    pub const OUTER_SPACE: RgbColor = RgbColor(65, 74, 76);
    pub const OUTRAGEOUS_ORANGE: RgbColor = RgbColor(255, 110, 74);
    pub const OXFORD_BLUE: RgbColor = RgbColor(0, 33, 71);
    pub const PAKISTAN_GREEN: RgbColor = RgbColor(0, 102, 0);
    pub const PALATINATE_BLUE: RgbColor = RgbColor(39, 59, 226);
    pub const PALATINATE_PURPLE: RgbColor = RgbColor(104, 40, 96);
    pub const PALE_AQUA: RgbColor = RgbColor(188, 212, 230);
    pub const PALE_BLUE: RgbColor = RgbColor(175, 238, 238);
    pub const PALE_BROWN: RgbColor = RgbColor(152, 118, 84);
    pub const PALE_CARMINE: RgbColor = RgbColor(175, 64, 53);
    pub const PALE_CERULEAN: RgbColor = RgbColor(155, 196, 226);
    pub const PALE_CHESTNUT: RgbColor = RgbColor(221, 173, 175);
    pub const PALE_COPPER: RgbColor = RgbColor(218, 138, 103);
    pub const PALE_CORNFLOWER_BLUE: RgbColor = RgbColor(171, 205, 239);
    pub const PALE_GOLD: RgbColor = RgbColor(230, 190, 138);
    pub const PALE_GOLDENROD: RgbColor = RgbColor(238, 232, 170);
    pub const PALE_GREEN: RgbColor = RgbColor(152, 251, 152);
    pub const PALE_LAVENDER: RgbColor = RgbColor(220, 208, 255);
    pub const PALE_MAGENTA: RgbColor = RgbColor(249, 132, 229);
    pub const PALE_PINK: RgbColor = RgbColor(250, 218, 221);
    pub const PALE_PLUM: RgbColor = RgbColor(221, 160, 221);
    pub const PALE_RED_VIOLET: RgbColor = RgbColor(219, 112, 147);
    pub const PALE_ROBIN_EGG_BLUE: RgbColor = RgbColor(150, 222, 209);
    pub const PALE_SILVER: RgbColor = RgbColor(201, 192, 187);
    pub const PALE_SPRING_BUD: RgbColor = RgbColor(236, 235, 189);
    pub const PALE_TAUPE: RgbColor = RgbColor(188, 152, 126);
    pub const PALE_VIOLET_RED: RgbColor = RgbColor(219, 112, 147);
    pub const PANSY_PURPLE: RgbColor = RgbColor(120, 24, 74);
    pub const PAPAYA_WHIP: RgbColor = RgbColor(255, 239, 213);
    pub const PARIS_GREEN: RgbColor = RgbColor(80, 200, 120);
    pub const PASTEL_BLUE: RgbColor = RgbColor(174, 198, 207);
    pub const PASTEL_BROWN: RgbColor = RgbColor(131, 105, 83);
    pub const PASTEL_GRAY: RgbColor = RgbColor(207, 207, 196);
    pub const PASTEL_GREEN: RgbColor = RgbColor(119, 221, 119);
    pub const PASTEL_MAGENTA: RgbColor = RgbColor(244, 154, 194);
    pub const PASTEL_ORANGE: RgbColor = RgbColor(255, 179, 71);
    pub const PASTEL_PINK: RgbColor = RgbColor(222, 165, 164);
    pub const PASTEL_PURPLE: RgbColor = RgbColor(179, 158, 181);
    pub const PASTEL_RED: RgbColor = RgbColor(255, 105, 97);
    pub const PASTEL_VIOLET: RgbColor = RgbColor(203, 153, 201);
    pub const PASTEL_YELLOW: RgbColor = RgbColor(253, 253, 150);
    pub const PATRIARCH: RgbColor = RgbColor(128, 0, 128);
    pub const PAYNE_S_GREY: RgbColor = RgbColor(83, 104, 120);
    pub const PEACH: RgbColor = RgbColor(255, 229, 180);
    pub const PEACH_CRAYOLA: RgbColor = RgbColor(255, 203, 164);
    pub const PEACH_ORANGE: RgbColor = RgbColor(255, 204, 153);
    pub const PEACH_PUFF: RgbColor = RgbColor(255, 218, 185);
    pub const PEACH_YELLOW: RgbColor = RgbColor(250, 223, 173);
    pub const PEAR: RgbColor = RgbColor(209, 226, 49);
    pub const PEARL: RgbColor = RgbColor(234, 224, 200);
    pub const PEARL_AQUA: RgbColor = RgbColor(136, 216, 192);
    pub const PEARLY_PURPLE: RgbColor = RgbColor(183, 104, 162);
    pub const PERIDOT: RgbColor = RgbColor(230, 226, 0);
    pub const PERIWINKLE: RgbColor = RgbColor(204, 204, 255);
    pub const PERSIAN_BLUE: RgbColor = RgbColor(28, 57, 187);
    pub const PERSIAN_GREEN: RgbColor = RgbColor(0, 166, 147);
    pub const PERSIAN_INDIGO: RgbColor = RgbColor(50, 18, 122);
    pub const PERSIAN_ORANGE: RgbColor = RgbColor(217, 144, 88);
    pub const PERSIAN_PINK: RgbColor = RgbColor(247, 127, 190);
    pub const PERSIAN_PLUM: RgbColor = RgbColor(112, 28, 28);
    pub const PERSIAN_RED: RgbColor = RgbColor(204, 51, 51);
    pub const PERSIAN_ROSE: RgbColor = RgbColor(254, 40, 162);
    pub const PERSIMMON: RgbColor = RgbColor(236, 88, 0);
    pub const PERU: RgbColor = RgbColor(205, 133, 63);
    pub const PHLOX: RgbColor = RgbColor(223, 0, 255);
    pub const PHTHALO_BLUE: RgbColor = RgbColor(0, 15, 137);
    pub const PHTHALO_GREEN: RgbColor = RgbColor(18, 53, 36);
    pub const PIGGY_PINK: RgbColor = RgbColor(253, 221, 230);
    pub const PINE_GREEN: RgbColor = RgbColor(1, 121, 111);
    pub const PINK: RgbColor = RgbColor(255, 192, 203);
    pub const PINK_LACE: RgbColor = RgbColor(255, 221, 244);
    pub const PINK_ORANGE: RgbColor = RgbColor(255, 153, 102);
    pub const PINK_PEARL: RgbColor = RgbColor(231, 172, 207);
    pub const PINK_SHERBET: RgbColor = RgbColor(247, 143, 167);
    pub const PISTACHIO: RgbColor = RgbColor(147, 197, 114);
    pub const PLATINUM: RgbColor = RgbColor(229, 228, 226);
    pub const PLUM_TRADITIONAL: RgbColor = RgbColor(142, 69, 133);
    pub const PLUM_WEB: RgbColor = RgbColor(221, 160, 221);
    pub const PORTLAND_ORANGE: RgbColor = RgbColor(255, 90, 54);
    pub const POWDER_BLUE_WEB: RgbColor = RgbColor(176, 224, 230);
    pub const PRINCETON_ORANGE: RgbColor = RgbColor(255, 143, 0);
    pub const PRUNE: RgbColor = RgbColor(112, 28, 28);
    pub const PRUSSIAN_BLUE: RgbColor = RgbColor(0, 49, 83);
    pub const PSYCHEDELIC_PURPLE: RgbColor = RgbColor(223, 0, 255);
    pub const PUCE: RgbColor = RgbColor(204, 136, 153);
    pub const PUMPKIN: RgbColor = RgbColor(255, 117, 24);
    pub const PURPLE_HEART: RgbColor = RgbColor(105, 53, 156);
    pub const PURPLE_HTML_CSS: RgbColor = RgbColor(128, 0, 128);
    pub const PURPLE_MOUNTAIN_MAJESTY: RgbColor = RgbColor(150, 120, 182);
    pub const PURPLE_MUNSELL: RgbColor = RgbColor(159, 0, 197);
    pub const PURPLE_PIZZAZZ: RgbColor = RgbColor(254, 78, 218);
    pub const PURPLE_TAUPE: RgbColor = RgbColor(80, 64, 77);
    pub const PURPLE_X11: RgbColor = RgbColor(160, 32, 240);
    pub const QUARTZ: RgbColor = RgbColor(81, 72, 79);
    pub const RACKLEY: RgbColor = RgbColor(93, 138, 168);
    pub const RADICAL_RED: RgbColor = RgbColor(255, 53, 94);
    pub const RAJAH: RgbColor = RgbColor(251, 171, 96);
    pub const RASPBERRY: RgbColor = RgbColor(227, 11, 93);
    pub const RASPBERRY_GLACE: RgbColor = RgbColor(145, 95, 109);
    pub const RASPBERRY_PINK: RgbColor = RgbColor(226, 80, 152);
    pub const RASPBERRY_ROSE: RgbColor = RgbColor(179, 68, 108);
    pub const RAW_UMBER: RgbColor = RgbColor(130, 102, 68);
    pub const RAZZLE_DAZZLE_ROSE: RgbColor = RgbColor(255, 51, 204);
    pub const RAZZMATAZZ: RgbColor = RgbColor(227, 37, 107);
    pub const RED: RgbColor = RgbColor(255, 0, 0);
    pub const RED_BROWN: RgbColor = RgbColor(165, 42, 42);
    pub const RED_DEVIL: RgbColor = RgbColor(134, 1, 17);
    pub const RED_MUNSELL: RgbColor = RgbColor(242, 0, 60);
    pub const RED_NCS: RgbColor = RgbColor(196, 2, 51);
    pub const RED_ORANGE: RgbColor = RgbColor(255, 83, 73);
    pub const RED_PIGMENT: RgbColor = RgbColor(237, 28, 36);
    pub const RED_RYB: RgbColor = RgbColor(254, 39, 18);
    pub const RED_VIOLET: RgbColor = RgbColor(199, 21, 133);
    pub const REDWOOD: RgbColor = RgbColor(171, 78, 82);
    pub const REGALIA: RgbColor = RgbColor(82, 45, 128);
    pub const RESOLUTION_BLUE: RgbColor = RgbColor(0, 35, 135);
    pub const RICH_BLACK: RgbColor = RgbColor(0, 64, 64);
    pub const RICH_BRILLIANT_LAVENDER: RgbColor = RgbColor(241, 167, 254);
    pub const RICH_CARMINE: RgbColor = RgbColor(215, 0, 64);
    pub const RICH_ELECTRIC_BLUE: RgbColor = RgbColor(8, 146, 208);
    pub const RICH_LAVENDER: RgbColor = RgbColor(167, 107, 207);
    pub const RICH_LILAC: RgbColor = RgbColor(182, 102, 210);
    pub const RICH_MAROON: RgbColor = RgbColor(176, 48, 96);
    pub const RIFLE_GREEN: RgbColor = RgbColor(65, 72, 51);
    pub const ROBIN_EGG_BLUE: RgbColor = RgbColor(0, 204, 204);
    pub const ROSE: RgbColor = RgbColor(255, 0, 127);
    pub const ROSE_BONBON: RgbColor = RgbColor(249, 66, 158);
    pub const ROSE_EBONY: RgbColor = RgbColor(103, 72, 70);
    pub const ROSE_GOLD: RgbColor = RgbColor(183, 110, 121);
    pub const ROSE_MADDER: RgbColor = RgbColor(227, 38, 54);
    pub const ROSE_PINK: RgbColor = RgbColor(255, 102, 204);
    pub const ROSE_QUARTZ: RgbColor = RgbColor(170, 152, 169);
    pub const ROSE_TAUPE: RgbColor = RgbColor(144, 93, 93);
    pub const ROSE_VALE: RgbColor = RgbColor(171, 78, 82);
    pub const ROSEWOOD: RgbColor = RgbColor(101, 0, 11);
    pub const ROSSO_CORSA: RgbColor = RgbColor(212, 0, 0);
    pub const ROSY_BROWN: RgbColor = RgbColor(188, 143, 143);
    pub const ROYAL_AZURE: RgbColor = RgbColor(0, 56, 168);
    pub const ROYAL_BLUE_TRADITIONAL: RgbColor = RgbColor(0, 35, 102);
    pub const ROYAL_BLUE_WEB: RgbColor = RgbColor(65, 105, 225);
    pub const ROYAL_FUCHSIA: RgbColor = RgbColor(202, 44, 146);
    pub const ROYAL_PURPLE: RgbColor = RgbColor(120, 81, 169);
    pub const ROYAL_YELLOW: RgbColor = RgbColor(250, 218, 94);
    pub const RUBINE_RED: RgbColor = RgbColor(209, 0, 86);
    pub const RUBY: RgbColor = RgbColor(224, 17, 95);
    pub const RUBY_RED: RgbColor = RgbColor(155, 17, 30);
    pub const RUDDY: RgbColor = RgbColor(255, 0, 40);
    pub const RUDDY_BROWN: RgbColor = RgbColor(187, 101, 40);
    pub const RUDDY_PINK: RgbColor = RgbColor(225, 142, 150);
    pub const RUFOUS: RgbColor = RgbColor(168, 28, 7);
    pub const RUSSET: RgbColor = RgbColor(128, 70, 27);
    pub const RUST: RgbColor = RgbColor(183, 65, 14);
    pub const RUSTY_RED: RgbColor = RgbColor(218, 44, 67);
    pub const SACRAMENTO_STATE_GREEN: RgbColor = RgbColor(0, 86, 63);
    pub const SADDLE_BROWN: RgbColor = RgbColor(139, 69, 19);
    pub const SAFETY_ORANGE_BLAZE_ORANGE: RgbColor = RgbColor(255, 103, 0);
    pub const SAFFRON: RgbColor = RgbColor(244, 196, 48);
    pub const SALMON: RgbColor = RgbColor(255, 140, 105);
    pub const SALMON_PINK: RgbColor = RgbColor(255, 145, 164);
    pub const SAND: RgbColor = RgbColor(194, 178, 128);
    pub const SAND_DUNE: RgbColor = RgbColor(150, 113, 23);
    pub const SANDSTORM: RgbColor = RgbColor(236, 213, 64);
    pub const SANDY_BROWN: RgbColor = RgbColor(244, 164, 96);
    pub const SANDY_TAUPE: RgbColor = RgbColor(150, 113, 23);
    pub const SANGRIA: RgbColor = RgbColor(146, 0, 10);
    pub const SAP_GREEN: RgbColor = RgbColor(80, 125, 42);
    pub const SAPPHIRE: RgbColor = RgbColor(15, 82, 186);
    pub const SAPPHIRE_BLUE: RgbColor = RgbColor(0, 103, 165);
    pub const SATIN_SHEEN_GOLD: RgbColor = RgbColor(203, 161, 53);
    pub const SCARLET: RgbColor = RgbColor(255, 36, 0);
    pub const SCARLET_CRAYOLA: RgbColor = RgbColor(253, 14, 53);
    pub const SCHOOL_BUS_YELLOW: RgbColor = RgbColor(255, 216, 0);
    pub const SCREAMIN_GREEN: RgbColor = RgbColor(118, 255, 122);
    pub const SEA_BLUE: RgbColor = RgbColor(0, 105, 148);
    pub const SEA_GREEN: RgbColor = RgbColor(46, 139, 87);
    pub const SEAL_BROWN: RgbColor = RgbColor(50, 20, 20);
    pub const SEASHELL: RgbColor = RgbColor(255, 245, 238);
    pub const SELECTIVE_YELLOW: RgbColor = RgbColor(255, 186, 0);
    pub const SEPIA: RgbColor = RgbColor(112, 66, 20);
    pub const SHADOW: RgbColor = RgbColor(138, 121, 93);
    pub const SHAMROCK_GREEN: RgbColor = RgbColor(0, 158, 96);
    pub const SHOCKING_PINK: RgbColor = RgbColor(252, 15, 192);
    pub const SHOCKING_PINK_CRAYOLA: RgbColor = RgbColor(255, 111, 255);
    pub const SIENNA: RgbColor = RgbColor(136, 45, 23);
    pub const SILVER: RgbColor = RgbColor(192, 192, 192);
    pub const SINOPIA: RgbColor = RgbColor(203, 65, 11);
    pub const SKOBELOFF: RgbColor = RgbColor(0, 116, 116);
    pub const SKY_BLUE: RgbColor = RgbColor(135, 206, 235);
    pub const SKY_MAGENTA: RgbColor = RgbColor(207, 113, 175);
    pub const SLATE_BLUE: RgbColor = RgbColor(106, 90, 205);
    pub const SLATE_GRAY: RgbColor = RgbColor(112, 128, 144);
    pub const SMALT_DARK_POWDER_BLUE: RgbColor = RgbColor(0, 51, 153);
    pub const SMOKEY_TOPAZ: RgbColor = RgbColor(147, 61, 65);
    pub const SMOKY_BLACK: RgbColor = RgbColor(16, 12, 8);
    pub const SNOW: RgbColor = RgbColor(255, 250, 250);
    pub const SPIRO_DISCO_BALL: RgbColor = RgbColor(15, 192, 252);
    pub const SPRING_BUD: RgbColor = RgbColor(167, 252, 0);
    pub const SPRING_GREEN: RgbColor = RgbColor(0, 255, 127);
    pub const ST_PATRICK_S_BLUE: RgbColor = RgbColor(35, 41, 122);
    pub const STEEL_BLUE: RgbColor = RgbColor(70, 130, 180);
    pub const STIL_DE_GRAIN_YELLOW: RgbColor = RgbColor(250, 218, 94);
    pub const STIZZA: RgbColor = RgbColor(153, 0, 0);
    pub const STORMCLOUD: RgbColor = RgbColor(79, 102, 106);
    pub const STRAW: RgbColor = RgbColor(228, 217, 111);
    pub const SUNGLOW: RgbColor = RgbColor(255, 204, 51);
    pub const SUNSET: RgbColor = RgbColor(250, 214, 165);
    pub const TAN: RgbColor = RgbColor(210, 180, 140);
    pub const TANGELO: RgbColor = RgbColor(249, 77, 0);
    pub const TANGERINE: RgbColor = RgbColor(242, 133, 0);
    pub const TANGERINE_YELLOW: RgbColor = RgbColor(255, 204, 0);
    pub const TANGO_PINK: RgbColor = RgbColor(228, 113, 122);
    pub const TAUPE: RgbColor = RgbColor(72, 60, 50);
    pub const TAUPE_GRAY: RgbColor = RgbColor(139, 133, 137);
    pub const TEA_GREEN: RgbColor = RgbColor(208, 240, 192);
    pub const TEA_ROSE_ORANGE: RgbColor = RgbColor(248, 131, 121);
    pub const TEA_ROSE_ROSE: RgbColor = RgbColor(244, 194, 194);
    pub const TEAL: RgbColor = RgbColor(0, 128, 128);
    pub const TEAL_BLUE: RgbColor = RgbColor(54, 117, 136);
    pub const TEAL_GREEN: RgbColor = RgbColor(0, 130, 127);
    pub const TELEMAGENTA: RgbColor = RgbColor(207, 52, 118);
    pub const TENN_TAWNY: RgbColor = RgbColor(205, 87, 0);
    pub const TERRA_COTTA: RgbColor = RgbColor(226, 114, 91);
    pub const THISTLE: RgbColor = RgbColor(216, 191, 216);
    pub const THULIAN_PINK: RgbColor = RgbColor(222, 111, 161);
    pub const TICKLE_ME_PINK: RgbColor = RgbColor(252, 137, 172);
    pub const TIFFANY_BLUE: RgbColor = RgbColor(10, 186, 181);
    pub const TIGER_S_EYE: RgbColor = RgbColor(224, 141, 60);
    pub const TIMBERWOLF: RgbColor = RgbColor(219, 215, 210);
    pub const TITANIUM_YELLOW: RgbColor = RgbColor(238, 230, 0);
    pub const TOMATO: RgbColor = RgbColor(255, 99, 71);
    pub const TOOLBOX: RgbColor = RgbColor(116, 108, 192);
    pub const TOPAZ: RgbColor = RgbColor(255, 200, 124);
    pub const TRACTOR_RED: RgbColor = RgbColor(253, 14, 53);
    pub const TROLLEY_GREY: RgbColor = RgbColor(128, 128, 128);
    pub const TROPICAL_RAIN_FOREST: RgbColor = RgbColor(0, 117, 94);
    pub const TRUE_BLUE: RgbColor = RgbColor(0, 115, 207);
    pub const TUFTS_BLUE: RgbColor = RgbColor(65, 125, 193);
    pub const TUMBLEWEED: RgbColor = RgbColor(222, 170, 136);
    pub const TURKISH_ROSE: RgbColor = RgbColor(181, 114, 129);
    pub const TURQUOISE: RgbColor = RgbColor(48, 213, 200);
    pub const TURQUOISE_BLUE: RgbColor = RgbColor(0, 255, 239);
    pub const TURQUOISE_GREEN: RgbColor = RgbColor(160, 214, 180);
    pub const TUSCAN_RED: RgbColor = RgbColor(124, 72, 72);
    pub const TWILIGHT_LAVENDER: RgbColor = RgbColor(138, 73, 107);
    pub const TYRIAN_PURPLE: RgbColor = RgbColor(102, 2, 60);
    pub const UA_BLUE: RgbColor = RgbColor(0, 51, 170);
    pub const UA_RED: RgbColor = RgbColor(217, 0, 76);
    pub const UBE: RgbColor = RgbColor(136, 120, 195);
    pub const UCLA_BLUE: RgbColor = RgbColor(83, 104, 149);
    pub const UCLA_GOLD: RgbColor = RgbColor(255, 179, 0);
    pub const UFO_GREEN: RgbColor = RgbColor(60, 208, 112);
    pub const ULTRA_PINK: RgbColor = RgbColor(255, 111, 255);
    pub const ULTRAMARINE: RgbColor = RgbColor(18, 10, 143);
    pub const ULTRAMARINE_BLUE: RgbColor = RgbColor(65, 102, 245);
    pub const UMBER: RgbColor = RgbColor(99, 81, 71);
    pub const UNBLEACHED_SILK: RgbColor = RgbColor(255, 221, 202);
    pub const UNITED_NATIONS_BLUE: RgbColor = RgbColor(91, 146, 229);
    pub const UNIVERSITY_OF_CALIFORNIA_GOLD: RgbColor = RgbColor(183, 135, 39);
    pub const UNMELLOW_YELLOW: RgbColor = RgbColor(255, 255, 102);
    pub const UP_FOREST_GREEN: RgbColor = RgbColor(1, 68, 33);
    pub const UP_MAROON: RgbColor = RgbColor(123, 17, 19);
    pub const UPSDELL_RED: RgbColor = RgbColor(174, 32, 41);
    pub const UROBILIN: RgbColor = RgbColor(225, 173, 33);
    pub const USAFA_BLUE: RgbColor = RgbColor(0, 79, 152);
    pub const USC_CARDINAL: RgbColor = RgbColor(153, 0, 0);
    pub const USC_GOLD: RgbColor = RgbColor(255, 204, 0);
    pub const UTAH_CRIMSON: RgbColor = RgbColor(211, 0, 63);
    pub const VANILLA: RgbColor = RgbColor(243, 229, 171);
    pub const VEGAS_GOLD: RgbColor = RgbColor(197, 179, 88);
    pub const VENETIAN_RED: RgbColor = RgbColor(200, 8, 21);
    pub const VERDIGRIS: RgbColor = RgbColor(67, 179, 174);
    pub const VERMILION_CINNABAR: RgbColor = RgbColor(227, 66, 52);
    pub const VERMILION_PLOCHERE: RgbColor = RgbColor(217, 96, 59);
    pub const VERONICA: RgbColor = RgbColor(160, 32, 240);
    pub const VIOLET: RgbColor = RgbColor(143, 0, 255);
    pub const VIOLET_BLUE: RgbColor = RgbColor(50, 74, 178);
    pub const VIOLET_COLOR_WHEEL: RgbColor = RgbColor(127, 0, 255);
    pub const VIOLET_RYB: RgbColor = RgbColor(134, 1, 175);
    pub const VIOLET_WEB: RgbColor = RgbColor(238, 130, 238);
    pub const VIRIDIAN: RgbColor = RgbColor(64, 130, 109);
    pub const VIVID_AUBURN: RgbColor = RgbColor(146, 39, 36);
    pub const VIVID_BURGUNDY: RgbColor = RgbColor(159, 29, 53);
    pub const VIVID_CERISE: RgbColor = RgbColor(218, 29, 129);
    pub const VIVID_TANGERINE: RgbColor = RgbColor(255, 160, 137);
    pub const VIVID_VIOLET: RgbColor = RgbColor(159, 0, 255);
    pub const WARM_BLACK: RgbColor = RgbColor(0, 66, 66);
    pub const WATERSPOUT: RgbColor = RgbColor(164, 244, 249);
    pub const WENGE: RgbColor = RgbColor(100, 84, 82);
    pub const WHEAT: RgbColor = RgbColor(245, 222, 179);
    pub const WHITE: RgbColor = RgbColor(255, 255, 255);
    pub const WHITE_SMOKE: RgbColor = RgbColor(245, 245, 245);
    pub const WILD_BLUE_YONDER: RgbColor = RgbColor(162, 173, 208);
    pub const WILD_STRAWBERRY: RgbColor = RgbColor(255, 67, 164);
    pub const WILD_WATERMELON: RgbColor = RgbColor(252, 108, 133);
    pub const WINE: RgbColor = RgbColor(114, 47, 55);
    pub const WINE_DREGS: RgbColor = RgbColor(103, 49, 71);
    pub const WISTERIA: RgbColor = RgbColor(201, 160, 220);
    pub const WOOD_BROWN: RgbColor = RgbColor(193, 154, 107);
    pub const XANADU: RgbColor = RgbColor(115, 134, 120);
    pub const YALE_BLUE: RgbColor = RgbColor(15, 77, 146);
    pub const YELLOW: RgbColor = RgbColor(255, 255, 0);
    pub const YELLOW_GREEN: RgbColor = RgbColor(154, 205, 50);
    pub const YELLOW_MUNSELL: RgbColor = RgbColor(239, 204, 0);
    pub const YELLOW_NCS: RgbColor = RgbColor(255, 211, 0);
    pub const YELLOW_ORANGE: RgbColor = RgbColor(255, 174, 66);
    pub const YELLOW_PROCESS: RgbColor = RgbColor(255, 239, 0);
    pub const YELLOW_RYB: RgbColor = RgbColor(254, 254, 51);
    pub const ZAFFRE: RgbColor = RgbColor(0, 20, 168);
    pub const ZINNWALDITE_BROWN: RgbColor = RgbColor(44, 22, 8);
}