-
Notifications
You must be signed in to change notification settings - Fork 1
/
colournames.py
2634 lines (2616 loc) · 123 KB
/
colournames.py
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
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
"""
Gives the name of any RGB color.
If the exact color doesn't have a name, the closest match will be used instead.
"""
__all__ = ["find"]
import functools
@functools.singledispatch
def find(r, g, b):
"""Finds a color's name.
The color may be expressed in either of the following formats:
- three ints (r, g, b) in the range 0 <= x < 256,
- a tuple of three ints (r, g, b) in the range 0 <= x < 256, or
- a hexadecimal representation (3 or 6 digits, '#' prefix optional).
"""
if type(r) is not int or type(g) is not int or type(b) is not int:
raise TypeError("R, G and B values must be int")
if not (0 <= r < 256 and 0 <= g < 256 and 0 <= b < 256):
raise ValueError("Invalid color value: must be 0 <= x < 256")
return _search(_searchtree, r, g, b)
@find.register(str)
def _find_hex(color):
if color[0] == '#':
color = color[1:]
if len(color) == 3:
return find(*[int(c*2, 16) for c in color])
if len(color) == 6:
return find(*[int(color[i:i+2], 16) for i in (0, 2, 4)])
raise ValueError("Malformed hexadecimal color representation")
@find.register(tuple)
def _find_tuple(color):
if len(color) != 3:
raise ValueError("Malformed color tuple: must be of size 3 (r, g, b)")
return find(*color)
def _octree_index(r, g, b, d):
return ((r >> d & 1) << 2) | ((g >> d & 1) << 1) | (b >> d & 1)
def _search(tree, r, g, b, d=7):
i = _octree_index(r, g, b, d)
if i not in tree:
return _approximate(tree, r, g, b)
return tree[i] if type(tree[i]) is str else _search(tree[i], r, g, b, d-1)
def _approximate(tree, r, g, b):
def _distance(colorname):
x, y, z = _colors[colorname]
return (r - x)**2 + (g - y)**2 + (b - z)**2
return min(_descendants(tree), key=_distance)
def _descendants(tree):
for i, child in tree.items():
if type(child) is str:
yield child
else:
yield from _descendants(child)
_colors = {
"Abbey" : ( 76, 79, 86),
"Acadia" : ( 27, 20, 4),
"Acapulco" : (124, 176, 161),
"Aero Blue" : (201, 255, 229),
"Affair" : (113, 70, 147),
"Akaroa" : (212, 196, 168),
"Alabaster" : (250, 250, 250),
"Albescent White" : (245, 233, 211),
"Algae Green" : (147, 223, 184),
"Alice Blue" : (240, 248, 255),
"Alizarin Crimson" : (227, 38, 54),
"Allports" : ( 0, 118, 163),
"Almond" : (238, 217, 196),
"Almond Frost" : (144, 123, 113),
"Alpine" : (175, 143, 44),
"Alto" : (219, 219, 219),
"Aluminium" : (169, 172, 182),
"Amaranth" : (229, 43, 80),
"Amazon" : ( 59, 122, 87),
"Amber" : (255, 191, 0),
"Americano" : (135, 117, 110),
"Amethyst" : (153, 102, 204),
"Amethyst Smoke" : (163, 151, 180),
"Amour" : (249, 234, 243),
"Amulet" : (123, 159, 128),
"Anakiwa" : (157, 229, 255),
"Antique Brass" : (200, 138, 101),
"Antique Bronze" : (112, 74, 7),
"Anzac" : (224, 182, 70),
"Apache" : (223, 190, 111),
"Apple" : ( 79, 168, 61),
"Apple Blossom" : (175, 77, 67),
"Apple Green" : (226, 243, 236),
"Apricot" : (235, 147, 115),
"Apricot Peach" : (251, 206, 177),
"Apricot White" : (255, 254, 236),
"Aqua Deep" : ( 1, 75, 67),
"Aqua Forest" : ( 95, 167, 119),
"Aqua Haze" : (237, 245, 245),
"Aqua Island" : (161, 218, 215),
"Aqua Spring" : (234, 249, 245),
"Aqua Squeeze" : (232, 245, 242),
"Aquamarine" : (127, 255, 212),
"Aquamarine Blue" : (113, 217, 226),
"Arapawa" : ( 17, 12, 108),
"Armadillo" : ( 67, 62, 55),
"Arrowtown" : (148, 135, 113),
"Ash" : (198, 195, 181),
"Asparagus" : (123, 160, 91),
"Asphalt" : ( 19, 10, 6),
"Astra" : (250, 234, 185),
"Astral" : ( 50, 125, 160),
"Astronaut" : ( 40, 58, 119),
"Astronaut Blue" : ( 1, 62, 98),
"Athens Gray" : (238, 240, 243),
"Aths Special" : (236, 235, 206),
"Atlantis" : (151, 205, 45),
"Atoll" : ( 10, 111, 117),
"Atomic Tangerine" : (255, 153, 102),
"Au Chico" : (151, 96, 93),
"Aubergine" : ( 59, 9, 16),
"Australian Mint" : (245, 255, 190),
"Avocado" : (136, 141, 101),
"Axolotl" : ( 78, 102, 73),
"Azalea" : (247, 200, 218),
"Aztec" : ( 13, 28, 25),
"Azure" : ( 49, 91, 161),
"Azure Radiance" : ( 0, 127, 255),
"Baby Blue" : (224, 255, 255),
"Bahama Blue" : ( 2, 99, 149),
"Bahia" : (165, 203, 12),
"Baja White" : (255, 248, 209),
"Bali Hai" : (133, 159, 175),
"Baltic Sea" : ( 42, 38, 48),
"Bamboo" : (218, 99, 4),
"Banana Mania" : (251, 231, 178),
"Bandicoot" : (133, 132, 112),
"Barberry" : (222, 215, 23),
"Barley Corn" : (166, 139, 91),
"Barley White" : (255, 244, 206),
"Barossa" : ( 68, 1, 45),
"Bastille" : ( 41, 33, 48),
"Battleship Gray" : (130, 143, 114),
"Bay Leaf" : (125, 169, 141),
"Bay of Many" : ( 39, 58, 129),
"Bazaar" : (152, 119, 123),
"Bean " : ( 61, 12, 2),
"Beauty Bush" : (238, 193, 190),
"Beaver" : (146, 111, 91),
"Beeswax" : (254, 242, 199),
"Beige" : (245, 245, 220),
"Bermuda" : (125, 216, 198),
"Bermuda Gray" : (107, 139, 162),
"Beryl Green" : (222, 229, 192),
"Bianca" : (252, 251, 243),
"Big Stone" : ( 22, 42, 64),
"Bilbao" : ( 50, 124, 20),
"Biloba Flower" : (178, 161, 234),
"Birch" : ( 55, 48, 33),
"Bird Flower" : (212, 205, 22),
"Biscay" : ( 27, 49, 98),
"Bismark" : ( 73, 113, 131),
"Bison Hide" : (193, 183, 164),
"Bistre" : ( 61, 43, 31),
"Bitter" : (134, 137, 116),
"Bitter Lemon" : (202, 224, 13),
"Bittersweet" : (254, 111, 94),
"Bizarre" : (238, 222, 218),
"Black" : ( 0, 0, 0),
"Black Bean" : ( 8, 25, 16),
"Black Forest" : ( 11, 19, 4),
"Black Haze" : (246, 247, 247),
"Black Marlin" : ( 62, 44, 28),
"Black Olive" : ( 36, 46, 22),
"Black Pearl" : ( 4, 19, 34),
"Black Rock" : ( 13, 3, 50),
"Black Rose" : (103, 3, 45),
"Black Russian" : ( 10, 0, 28),
"Black Squeeze" : (242, 250, 250),
"Black White" : (255, 254, 246),
"Blackberry" : ( 77, 1, 53),
"Blackcurrant" : ( 50, 41, 58),
"Blaze Orange" : (255, 102, 0),
"Bleach White" : (254, 243, 216),
"Bleached Cedar" : ( 44, 33, 51),
"Blizzard Blue" : (163, 227, 237),
"Blossom" : (220, 180, 188),
"Blue" : ( 0, 0, 255),
"Blue Bayoux" : ( 73, 102, 121),
"Blue Bell" : (153, 153, 204),
"Blue Chalk" : (241, 233, 255),
"Blue Charcoal" : ( 1, 13, 26),
"Blue Chill" : ( 12, 137, 144),
"Blue Diamond" : ( 56, 4, 116),
"Blue Dianne" : ( 32, 72, 82),
"Blue Gem" : ( 44, 14, 140),
"Blue Haze" : (191, 190, 216),
"Blue Lagoon" : ( 1, 121, 135),
"Blue Marguerite" : (118, 102, 198),
"Blue Ribbon" : ( 0, 102, 255),
"Blue Romance" : (210, 246, 222),
"Blue Smoke" : (116, 136, 129),
"Blue Stone" : ( 1, 97, 98),
"Blue Violet" : (100, 86, 183),
"Blue Whale" : ( 4, 46, 76),
"Blue Zodiac" : ( 19, 38, 77),
"Blumine" : ( 24, 88, 122),
"Blush" : (180, 70, 104),
"Blush Pink" : (255, 111, 255),
"Bombay" : (175, 177, 184),
"Bon Jour" : (229, 224, 225),
"Bondi Blue" : ( 0, 149, 182),
"Bone" : (228, 209, 192),
"Bordeaux" : ( 92, 1, 32),
"Bossanova" : ( 78, 42, 90),
"Boston Blue" : ( 59, 145, 180),
"Botticelli" : (199, 221, 229),
"Bottle Green" : ( 9, 54, 36),
"Boulder" : (122, 122, 122),
"Bouquet" : (174, 128, 158),
"Bourbon" : (186, 111, 30),
"Bracken" : ( 74, 42, 4),
"Brandy" : (222, 193, 150),
"Brandy Punch" : (205, 132, 41),
"Brandy Rose" : (187, 137, 131),
"Breaker Bay" : ( 93, 161, 159),
"Brick Red" : (198, 45, 66),
"Bridal Heath" : (255, 250, 244),
"Bridesmaid" : (254, 240, 236),
"Bright Gray" : ( 60, 65, 81),
"Bright Green" : (102, 255, 0),
"Bright Red" : (177, 0, 0),
"Bright Sun" : (254, 211, 60),
"Bright Turquoise" : ( 8, 232, 222),
"Brilliant Rose" : (246, 83, 166),
"Brink Pink" : (251, 96, 127),
"Bronco" : (171, 161, 150),
"Bronze" : ( 63, 33, 9),
"Bronze Olive" : ( 78, 66, 12),
"Bronzetone" : ( 77, 64, 15),
"Broom" : (255, 236, 19),
"Brown" : (150, 75, 0),
"Brown Bramble" : ( 89, 40, 4),
"Brown Derby" : ( 73, 38, 21),
"Brown Pod" : ( 64, 24, 1),
"Brown Rust" : (175, 89, 62),
"Brown Tumbleweed" : ( 55, 41, 14),
"Bubbles" : (231, 254, 255),
"Buccaneer" : ( 98, 47, 48),
"Bud" : (168, 174, 156),
"Buddha Gold" : (193, 160, 4),
"Buff" : (240, 220, 130),
"Bulgarian Rose" : ( 72, 6, 7),
"Bull Shot" : (134, 77, 30),
"Bunker" : ( 13, 17, 23),
"Bunting" : ( 21, 31, 76),
"Burgundy" : (144, 0, 32),
"Burnham" : ( 0, 46, 32),
"Burning Orange" : (255, 112, 52),
"Burning Sand" : (217, 147, 118),
"Burnt Maroon" : ( 66, 3, 3),
"Burnt Orange" : (204, 85, 0),
"Burnt Sienna" : (233, 116, 81),
"Burnt Umber" : (138, 51, 36),
"Bush" : ( 13, 46, 28),
"Buttercup" : (243, 173, 22),
"Buttered Rum" : (161, 117, 13),
"Butterfly Bush" : ( 98, 78, 154),
"Buttermilk" : (255, 241, 181),
"Buttery White" : (255, 252, 234),
"Cab Sav" : ( 77, 10, 24),
"Cabaret" : (217, 73, 114),
"Cabbage Pont" : ( 63, 76, 58),
"Cactus" : ( 88, 113, 86),
"Cadet Blue" : (169, 178, 195),
"Cadillac" : (176, 76, 106),
"Cafe Royale" : (111, 68, 12),
"Calico" : (224, 192, 149),
"California" : (254, 157, 4),
"Calypso" : ( 49, 114, 141),
"Camarone" : ( 0, 88, 26),
"Camelot" : (137, 52, 86),
"Cameo" : (217, 185, 155),
"Camouflage" : ( 60, 57, 16),
"Camouflage Green" : (120, 134, 107),
"Can Can" : (213, 145, 164),
"Canary" : (243, 251, 98),
"Candlelight" : (252, 217, 23),
"Candy Corn" : (251, 236, 93),
"Cannon Black" : ( 37, 23, 6),
"Cannon Pink" : (137, 67, 103),
"Cape Cod" : ( 60, 68, 67),
"Cape Honey" : (254, 229, 172),
"Cape Palliser" : (162, 102, 69),
"Caper" : (220, 237, 180),
"Caramel" : (255, 221, 175),
"Cararra" : (238, 238, 232),
"Cardin Green" : ( 1, 54, 28),
"Cardinal" : (196, 30, 58),
"Cardinal Pink" : (140, 5, 94),
"Careys Pink" : (210, 158, 170),
"Caribbean Green" : ( 0, 204, 153),
"Carissma" : (234, 136, 168),
"Carla" : (243, 255, 216),
"Carmine" : (150, 0, 24),
"Carnaby Tan" : ( 92, 46, 1),
"Carnation" : (249, 90, 97),
"Carnation Pink" : (255, 166, 201),
"Carousel Pink" : (249, 224, 237),
"Carrot Orange" : (237, 145, 33),
"Casablanca" : (248, 184, 83),
"Casal" : ( 47, 97, 104),
"Cascade" : (139, 169, 165),
"Cashmere" : (230, 190, 165),
"Casper" : (173, 190, 209),
"Castro" : ( 82, 0, 31),
"Catalina Blue" : ( 6, 42, 120),
"Catskill White" : (238, 246, 247),
"Cavern Pink" : (227, 190, 190),
"Cedar" : ( 62, 28, 20),
"Cedar Wood Finish" : (113, 26, 0),
"Celadon" : (172, 225, 175),
"Celery" : (184, 194, 93),
"Celeste" : (209, 210, 202),
"Cello" : ( 30, 56, 91),
"Celtic" : ( 22, 50, 34),
"Cement" : (141, 118, 98),
"Ceramic" : (252, 255, 249),
"Cerise" : (218, 50, 135),
"Cerise Red" : (222, 49, 99),
"Cerulean" : ( 2, 164, 211),
"Cerulean Blue" : ( 42, 82, 190),
"Chablis" : (255, 244, 243),
"Chalet Green" : ( 81, 110, 61),
"Chalky" : (238, 215, 148),
"Chambray" : ( 53, 78, 140),
"Chamois" : (237, 220, 177),
"Champagne" : (250, 236, 204),
"Chantilly" : (248, 195, 223),
"Charade" : ( 41, 41, 55),
"Chardon" : (255, 243, 241),
"Chardonnay" : (255, 205, 140),
"Charlotte" : (186, 238, 249),
"Charm" : (212, 116, 148),
"Chartreuse" : (127, 255, 0),
"Chartreuse Yellow" : (223, 255, 0),
"Chateau Green" : ( 64, 168, 96),
"Chatelle" : (189, 179, 199),
"Chathams Blue" : ( 23, 85, 121),
"Chelsea Cucumber" : (131, 170, 93),
"Chelsea Gem" : (158, 83, 2),
"Chenin" : (223, 205, 111),
"Cherokee" : (252, 218, 152),
"Cherry Pie" : ( 42, 3, 89),
"Cherrywood" : (101, 26, 20),
"Cherub" : (248, 217, 233),
"Chestnut" : (185, 78, 72),
"Chestnut Rose" : (205, 92, 92),
"Chetwode Blue" : (133, 129, 217),
"Chicago" : ( 93, 92, 88),
"Chiffon" : (241, 255, 200),
"Chilean Fire" : (247, 119, 3),
"Chilean Heath" : (255, 253, 230),
"China Ivory" : (252, 255, 231),
"Chino" : (206, 199, 167),
"Chinook" : (168, 227, 189),
"Chocolate" : ( 55, 2, 2),
"Christalle" : ( 51, 3, 107),
"Christi" : (103, 167, 18),
"Christine" : (231, 115, 10),
"Chrome White" : (232, 241, 212),
"Cinder" : ( 14, 14, 24),
"Cinderella" : (253, 225, 220),
"Cinnabar" : (227, 66, 52),
"Cinnamon" : (123, 63, 0),
"Cioccolato" : ( 85, 40, 12),
"Citrine White" : (250, 247, 214),
"Citron" : (158, 169, 31),
"Citrus" : (161, 197, 10),
"Clairvoyant" : ( 72, 6, 86),
"Clam Shell" : (212, 182, 175),
"Claret" : (127, 23, 52),
"Classic Rose" : (251, 204, 231),
"Clay Ash" : (189, 200, 179),
"Clay Creek" : (138, 131, 96),
"Clear Day" : (233, 255, 253),
"Clementine" : (233, 110, 0),
"Clinker" : ( 55, 29, 9),
"Cloud" : (199, 196, 191),
"Cloud Burst" : ( 32, 46, 84),
"Cloudy" : (172, 165, 159),
"Clover" : ( 56, 73, 16),
"Cobalt" : ( 0, 71, 171),
"Cocoa Bean" : ( 72, 28, 28),
"Cocoa Brown" : ( 48, 31, 30),
"Coconut Cream" : (248, 247, 220),
"Cod Gray" : ( 11, 11, 11),
"Coffee" : (112, 101, 85),
"Coffee Bean" : ( 42, 20, 14),
"Cognac" : (159, 56, 29),
"Cola" : ( 63, 37, 0),
"Cold Purple" : (171, 160, 217),
"Cold Turkey" : (206, 186, 186),
"Colonial White" : (255, 237, 188),
"Comet" : ( 92, 93, 117),
"Como" : ( 81, 124, 102),
"Conch" : (201, 217, 210),
"Concord" : (124, 123, 122),
"Concrete" : (242, 242, 242),
"Confetti" : (233, 215, 90),
"Congo Brown" : ( 89, 55, 55),
"Congress Blue" : ( 2, 71, 142),
"Conifer" : (172, 221, 77),
"Contessa" : (198, 114, 107),
"Copper" : (184, 115, 51),
"Copper Canyon" : (126, 58, 21),
"Copper Rose" : (153, 102, 102),
"Copper Rust" : (148, 71, 71),
"Copperfield" : (218, 138, 103),
"Coral" : (255, 127, 80),
"Coral Red" : (255, 64, 64),
"Coral Reef" : (199, 188, 162),
"Coral Tree" : (168, 107, 107),
"Corduroy" : ( 96, 110, 104),
"Coriander" : (196, 208, 176),
"Cork" : ( 64, 41, 29),
"Corn" : (231, 191, 5),
"Corn Field" : (248, 250, 205),
"Corn Harvest" : (139, 107, 11),
"Cornflower" : (147, 204, 234),
"Cornflower Blue" : (100, 149, 237),
"Cornflower Lilac" : (255, 176, 172),
"Corvette" : (250, 211, 162),
"Cosmic" : (118, 57, 93),
"Cosmos" : (255, 216, 217),
"Costa Del Sol" : ( 97, 93, 48),
"Cotton Candy" : (255, 183, 213),
"Cotton Seed" : (194, 189, 182),
"County Green" : ( 1, 55, 26),
"Cowboy" : ( 77, 40, 45),
"Crail" : (185, 81, 64),
"Cranberry" : (219, 80, 121),
"Crater Brown" : ( 70, 36, 37),
"Cream" : (255, 253, 208),
"Cream Brulee" : (255, 229, 160),
"Cream Can" : (245, 200, 92),
"Creole" : ( 30, 15, 4),
"Crete" : (115, 120, 41),
"Crimson" : (220, 20, 60),
"Crocodile" : (115, 109, 88),
"Crown of Thorns" : (119, 31, 31),
"Crowshead" : ( 28, 18, 8),
"Cruise" : (181, 236, 223),
"Crusoe" : ( 0, 72, 22),
"Crusta" : (253, 123, 51),
"Cumin" : (146, 67, 33),
"Cumulus" : (253, 255, 213),
"Cupid" : (251, 190, 218),
"Curious Blue" : ( 37, 150, 209),
"Cutty Sark" : ( 80, 118, 114),
"Cyan / Aqua" : ( 0, 255, 255),
"Cyprus" : ( 0, 62, 64),
"Daintree" : ( 1, 39, 49),
"Dairy Cream" : (249, 228, 188),
"Daisy Bush" : ( 79, 35, 152),
"Dallas" : (110, 75, 38),
"Dandelion" : (254, 216, 93),
"Danube" : ( 96, 147, 209),
"Dark Blue" : ( 0, 0, 200),
"Dark Burgundy" : (119, 15, 5),
"Dark Ebony" : ( 60, 32, 5),
"Dark Fern" : ( 10, 72, 13),
"Dark Tan" : (102, 16, 16),
"Dawn" : (166, 162, 154),
"Dawn Pink" : (243, 233, 229),
"De York" : (122, 196, 136),
"Deco" : (210, 218, 151),
"Deep Blue" : ( 34, 8, 120),
"Deep Blush" : (228, 118, 152),
"Deep Bronze" : ( 74, 48, 4),
"Deep Cerulean" : ( 0, 123, 167),
"Deep Cove" : ( 5, 16, 64),
"Deep Fir" : ( 0, 41, 0),
"Deep Forest Green" : ( 24, 45, 9),
"Deep Koamaru" : ( 27, 18, 123),
"Deep Oak" : ( 65, 32, 16),
"Deep Sapphire" : ( 8, 37, 103),
"Deep Sea" : ( 1, 130, 107),
"Deep Sea Green" : ( 9, 88, 89),
"Deep Teal" : ( 0, 53, 50),
"Del Rio" : (176, 154, 149),
"Dell" : ( 57, 100, 19),
"Delta" : (164, 164, 157),
"Deluge" : (117, 99, 168),
"Denim" : ( 21, 96, 189),
"Derby" : (255, 238, 216),
"Desert" : (174, 96, 32),
"Desert Sand" : (237, 201, 175),
"Desert Storm" : (248, 248, 247),
"Dew" : (234, 255, 254),
"Di Serria" : (219, 153, 94),
"Diesel" : ( 19, 0, 0),
"Dingley" : ( 93, 119, 71),
"Disco" : (135, 21, 80),
"Dixie" : (226, 148, 24),
"Dodger Blue" : ( 30, 144, 255),
"Dolly" : (249, 255, 139),
"Dolphin" : (100, 96, 119),
"Domino" : (142, 119, 94),
"Don Juan" : ( 93, 76, 81),
"Donkey Brown" : (166, 146, 121),
"Dorado" : (107, 87, 85),
"Double Colonial White" : (238, 227, 173),
"Double Pearl Lusta" : (252, 244, 208),
"Double Spanish White" : (230, 215, 185),
"Dove Gray" : (109, 108, 108),
"Downriver" : ( 9, 34, 86),
"Downy" : (111, 208, 197),
"Driftwood" : (175, 135, 81),
"Drover" : (253, 247, 173),
"Dull Lavender" : (168, 153, 230),
"Dune" : ( 56, 53, 51),
"Dust Storm" : (229, 204, 201),
"Dusty Gray" : (168, 152, 155),
"Eagle" : (182, 186, 164),
"Earls Green" : (201, 185, 59),
"Early Dawn" : (255, 249, 230),
"East Bay" : ( 65, 76, 125),
"East Side" : (172, 145, 206),
"Eastern Blue" : ( 30, 154, 176),
"Ebb" : (233, 227, 227),
"Ebony" : ( 12, 11, 29),
"Ebony Clay" : ( 38, 40, 59),
"Eclipse" : ( 49, 28, 23),
"Ecru White" : (245, 243, 229),
"Ecstasy" : (250, 120, 20),
"Eden" : ( 16, 88, 82),
"Edgewater" : (200, 227, 215),
"Edward" : (162, 174, 171),
"Egg Sour" : (255, 244, 221),
"Egg White" : (255, 239, 193),
"Eggplant" : ( 97, 64, 81),
"El Paso" : ( 30, 23, 8),
"El Salva" : (143, 62, 51),
"Electric Lime" : (204, 255, 0),
"Electric Violet" : (139, 0, 255),
"Elephant" : ( 18, 52, 71),
"Elf Green" : ( 8, 131, 112),
"Elm" : ( 28, 124, 125),
"Emerald" : ( 80, 200, 120),
"Eminence" : (108, 48, 130),
"Emperor" : ( 81, 70, 73),
"Empress" : (129, 115, 119),
"Endeavour" : ( 0, 86, 167),
"Energy Yellow" : (248, 221, 92),
"English Holly" : ( 2, 45, 21),
"English Walnut" : ( 62, 43, 35),
"Envy" : (139, 166, 144),
"Equator" : (225, 188, 100),
"Espresso" : ( 97, 39, 24),
"Eternity" : ( 33, 26, 14),
"Eucalyptus" : ( 39, 138, 91),
"Eunry" : (207, 163, 157),
"Evening Sea" : ( 2, 78, 70),
"Everglade" : ( 28, 64, 46),
"Faded Jade" : ( 66, 121, 119),
"Fair Pink" : (255, 239, 236),
"Falcon" : (127, 98, 109),
"Fall Green" : (236, 235, 189),
"Falu Red" : (128, 24, 24),
"Fantasy" : (250, 243, 240),
"Fedora" : (121, 106, 120),
"Feijoa" : (159, 221, 140),
"Fern" : ( 99, 183, 108),
"Fern Frond" : (101, 114, 32),
"Fern Green" : ( 79, 121, 66),
"Ferra" : (112, 79, 80),
"Festival" : (251, 233, 108),
"Feta" : (240, 252, 234),
"Fiery Orange" : (179, 82, 19),
"Finch" : ( 98, 102, 73),
"Finlandia" : ( 85, 109, 86),
"Finn" : (105, 45, 84),
"Fiord" : ( 64, 81, 105),
"Fire" : (170, 66, 3),
"Fire Bush" : (232, 153, 40),
"Firefly" : ( 14, 42, 48),
"Flame Pea" : (218, 91, 56),
"Flamenco" : (255, 125, 7),
"Flamingo" : (242, 85, 42),
"Flax" : (238, 220, 130),
"Flax Smoke" : (123, 130, 101),
"Flesh" : (255, 203, 164),
"Flint" : (111, 106, 97),
"Flirt" : (162, 0, 109),
"Flush Mahogany" : (202, 52, 53),
"Flush Orange" : (255, 127, 0),
"Foam" : (216, 252, 250),
"Fog" : (215, 208, 255),
"Foggy Gray" : (203, 202, 182),
"Forest Green" : ( 34, 139, 34),
"Forget Me Not" : (255, 241, 238),
"Fountain Blue" : ( 86, 180, 190),
"Frangipani" : (255, 222, 179),
"French Gray" : (189, 189, 198),
"French Lilac" : (236, 199, 238),
"French Pass" : (189, 237, 253),
"French Rose" : (246, 74, 138),
"Fresh Eggplant" : (153, 0, 102),
"Friar Gray" : (128, 126, 121),
"Fringy Flower" : (177, 226, 193),
"Froly" : (245, 117, 132),
"Frost" : (237, 245, 221),
"Frosted Mint" : (219, 255, 248),
"Frostee" : (228, 246, 231),
"Fruit Salad" : ( 79, 157, 93),
"Fuchsia Blue" : (122, 88, 193),
"Fuchsia Pink" : (193, 84, 193),
"Fuego" : (190, 222, 13),
"Fuel Yellow" : (236, 169, 39),
"Fun Blue" : ( 25, 89, 168),
"Fun Green" : ( 1, 109, 57),
"Fuscous Gray" : ( 84, 83, 77),
"Fuzzy Wuzzy Brown" : (196, 86, 85),
"Gable Green" : ( 22, 53, 49),
"Gallery" : (239, 239, 239),
"Galliano" : (220, 178, 12),
"Gamboge" : (228, 155, 15),
"Geebung" : (209, 143, 27),
"Genoa" : ( 21, 115, 107),
"Geraldine" : (251, 137, 137),
"Geyser" : (212, 223, 226),
"Ghost" : (199, 201, 213),
"Gigas" : ( 82, 60, 148),
"Gimblet" : (184, 181, 106),
"Gin" : (232, 242, 235),
"Gin Fizz" : (255, 249, 226),
"Givry" : (248, 228, 191),
"Glacier" : (128, 179, 196),
"Glade Green" : ( 97, 132, 95),
"Go Ben" : (114, 109, 78),
"Goblin" : ( 61, 125, 82),
"Gold" : (255, 215, 0),
"Gold Drop" : (241, 130, 0),
"Gold Sand" : (230, 190, 138),
"Gold Tips" : (222, 186, 19),
"Golden Bell" : (226, 137, 19),
"Golden Dream" : (240, 213, 45),
"Golden Fizz" : (245, 251, 61),
"Golden Glow" : (253, 226, 149),
"Golden Grass" : (218, 165, 32),
"Golden Sand" : (240, 219, 125),
"Golden Tainoi" : (255, 204, 92),
"Goldenrod" : (252, 214, 103),
"Gondola" : ( 38, 20, 20),
"Gordons Green" : ( 11, 17, 7),
"Gorse" : (255, 241, 79),
"Gossamer" : ( 6, 155, 129),
"Gossip" : (210, 248, 176),
"Gothic" : (109, 146, 161),
"Governor Bay" : ( 47, 60, 179),
"Grain Brown" : (228, 213, 183),
"Grandis" : (255, 211, 140),
"Granite Green" : (141, 137, 116),
"Granny Apple" : (213, 246, 227),
"Granny Smith" : (132, 160, 160),
"Granny Smith Apple" : (157, 224, 147),
"Grape" : ( 56, 26, 81),
"Graphite" : ( 37, 22, 7),
"Gravel" : ( 74, 68, 75),
"Gray" : (128, 128, 128),
"Gray Asparagus" : ( 70, 89, 69),
"Gray Chateau" : (162, 170, 179),
"Gray Nickel" : (195, 195, 189),
"Gray Nurse" : (231, 236, 230),
"Gray Olive" : (169, 164, 145),
"Gray Suit" : (193, 190, 205),
"Green" : ( 0, 255, 0),
"Green Haze" : ( 1, 163, 104),
"Green House" : ( 36, 80, 15),
"Green Kelp" : ( 37, 49, 28),
"Green Leaf" : ( 67, 106, 13),
"Green Mist" : (203, 211, 176),
"Green Pea" : ( 29, 97, 66),
"Green Smoke" : (164, 175, 110),
"Green Spring" : (184, 193, 177),
"Green Vogue" : ( 3, 43, 82),
"Green Waterloo" : ( 16, 20, 5),
"Green White" : (232, 235, 224),
"Green Yellow" : (173, 255, 47),
"Grenadier" : (213, 70, 0),
"Guardsman Red" : (186, 1, 1),
"Gulf Blue" : ( 5, 22, 87),
"Gulf Stream" : (128, 179, 174),
"Gull Gray" : (157, 172, 183),
"Gum Leaf" : (182, 211, 191),
"Gumbo" : (124, 161, 166),
"Gun Powder" : ( 65, 66, 87),
"Gunsmoke" : (130, 134, 133),
"Gurkha" : (154, 149, 119),
"Hacienda" : (152, 129, 27),
"Hairy Heath" : (107, 42, 20),
"Haiti" : ( 27, 16, 53),
"Half Baked" : (133, 196, 204),
"Half Colonial White" : (253, 246, 211),
"Half Dutch White" : (254, 247, 222),
"Half Spanish White" : (254, 244, 219),
"Half and Half" : (255, 254, 225),
"Hampton" : (229, 216, 175),
"Harlequin" : ( 63, 255, 0),
"Harp" : (230, 242, 234),
"Harvest Gold" : (224, 185, 116),
"Havelock Blue" : ( 85, 144, 217),
"Hawaiian Tan" : (157, 86, 22),
"Hawkes Blue" : (212, 226, 252),
"Heath" : ( 84, 16, 18),
"Heather" : (183, 195, 208),
"Heathered Gray" : (182, 176, 149),
"Heavy Metal" : ( 43, 50, 40),
"Heliotrope" : (223, 115, 255),
"Hemlock" : ( 94, 93, 59),
"Hemp" : (144, 120, 116),
"Hibiscus" : (182, 49, 108),
"Highland" : (111, 142, 99),
"Hillary" : (172, 165, 134),
"Himalaya" : (106, 93, 27),
"Hint of Green" : (230, 255, 233),
"Hint of Red" : (251, 249, 249),
"Hint of Yellow" : (250, 253, 228),
"Hippie Blue" : ( 88, 154, 175),
"Hippie Green" : ( 83, 130, 75),
"Hippie Pink" : (174, 69, 96),
"Hit Gray" : (161, 173, 181),
"Hit Pink" : (255, 171, 129),
"Hokey Pokey" : (200, 165, 40),
"Hoki" : (101, 134, 159),
"Holly" : ( 1, 29, 19),
"Hollywood Cerise" : (244, 0, 161),
"Honey Flower" : ( 79, 28, 112),
"Honeysuckle" : (237, 252, 132),
"Hopbush" : (208, 109, 161),
"Horizon" : ( 90, 135, 160),
"Horses Neck" : ( 96, 73, 19),
"Hot Cinnamon" : (210, 105, 30),
"Hot Pink" : (255, 105, 180),
"Hot Toddy" : (179, 128, 7),
"Humming Bird" : (207, 249, 243),
"Hunter Green" : ( 22, 29, 16),
"Hurricane" : (135, 124, 123),
"Husk" : (183, 164, 88),
"Ice Cold" : (177, 244, 231),
"Iceberg" : (218, 244, 240),
"Illusion" : (246, 164, 201),
"Inch Worm" : (176, 227, 19),
"Indian Khaki" : (195, 176, 145),
"Indian Tan" : ( 77, 30, 1),
"Indigo" : ( 79, 105, 198),
"Indochine" : (194, 107, 3),
"International Klein Blue" : ( 0, 47, 167),
"International Orange" : (255, 79, 0),
"Irish Coffee" : ( 95, 61, 38),
"Iroko" : ( 67, 49, 32),
"Iron" : (212, 215, 217),
"Ironside Gray" : (103, 102, 98),
"Ironstone" : (134, 72, 60),
"Island Spice" : (255, 252, 238),
"Ivory" : (255, 255, 240),
"Jacaranda" : ( 46, 3, 41),
"Jacarta" : ( 58, 42, 106),
"Jacko Bean" : ( 46, 25, 5),
"Jacksons Purple" : ( 32, 32, 141),
"Jade" : ( 0, 168, 107),
"Jaffa" : (239, 134, 63),
"Jagged Ice" : (194, 232, 229),
"Jagger" : ( 53, 14, 87),
"Jaguar" : ( 8, 1, 16),
"Jambalaya" : ( 91, 48, 19),
"Janna" : (244, 235, 211),
"Japanese Laurel" : ( 10, 105, 6),
"Japanese Maple" : (120, 1, 9),
"Japonica" : (216, 124, 99),
"Java" : ( 31, 194, 194),
"Jazzberry Jam" : (165, 11, 94),
"Jelly Bean" : ( 41, 123, 154),
"Jet Stream" : (181, 210, 206),
"Jewel" : ( 18, 107, 64),
"Jon" : ( 59, 31, 31),
"Jonquil" : (238, 255, 154),
"Jordy Blue" : (138, 185, 241),
"Judge Gray" : ( 84, 67, 51),
"Jumbo" : (124, 123, 130),
"Jungle Green" : ( 41, 171, 135),
"Jungle Mist" : (180, 207, 211),
"Juniper" : (109, 146, 146),
"Just Right" : (236, 205, 185),
"Kabul" : ( 94, 72, 62),
"Kaitoke Green" : ( 0, 70, 32),
"Kangaroo" : (198, 200, 189),
"Karaka" : ( 30, 22, 9),
"Karry" : (255, 234, 212),
"Kashmir Blue" : ( 80, 112, 150),
"Kelp" : ( 69, 73, 54),
"Kenyan Copper" : (124, 28, 5),
"Keppel" : ( 58, 176, 158),
"Key Lime Pie" : (191, 201, 33),
"Khaki" : (240, 230, 140),
"Kidnapper" : (225, 234, 212),
"Kilamanjaro" : ( 36, 12, 2),
"Killarney" : ( 58, 106, 71),
"Kimberly" : (115, 108, 159),
"Kingfisher Daisy" : ( 62, 4, 128),
"Kobi" : (231, 159, 196),
"Kokoda" : (110, 109, 87),
"Korma" : (143, 75, 14),
"Koromiko" : (255, 189, 95),
"Kournikova" : (255, 231, 114),
"Kumera" : (136, 98, 33),
"La Palma" : ( 54, 135, 22),
"La Rioja" : (179, 193, 16),
"Las Palmas" : (198, 230, 16),
"Laser" : (200, 181, 104),
"Laser Lemon" : (255, 255, 102),
"Laurel" : (116, 147, 120),
"Lavender" : (181, 126, 220),
"Lavender Gray" : (189, 187, 215),
"Lavender Magenta" : (238, 130, 238),
"Lavender Pink" : (251, 174, 210),
"Lavender Purple" : (150, 123, 182),
"Lavender Rose" : (251, 160, 227),
"Lavender blush" : (255, 240, 245),
"Leather" : (150, 112, 89),
"Lemon" : (253, 233, 16),
"Lemon Chiffon" : (255, 250, 205),
"Lemon Ginger" : (172, 158, 34),
"Lemon Grass" : (155, 158, 143),
"Light Apricot" : (253, 213, 177),
"Light Orchid" : (226, 156, 210),
"Light Wisteria" : (201, 160, 220),
"Lightning Yellow" : (252, 192, 30),
"Lilac" : (200, 162, 200),
"Lilac Bush" : (152, 116, 211),
"Lily" : (200, 170, 191),
"Lily White" : (231, 248, 255),
"Lima" : (118, 189, 23),
"Lime" : (191, 255, 0),
"Limeade" : (111, 157, 2),
"Limed Ash" : (116, 125, 99),
"Limed Oak" : (172, 138, 86),
"Limed Spruce" : ( 57, 72, 81),
"Linen" : (250, 240, 230),
"Link Water" : (217, 228, 245),
"Lipstick" : (171, 5, 99),
"Lisbon Brown" : ( 66, 57, 33),
"Livid Brown" : ( 77, 40, 46),
"Loafer" : (238, 244, 222),
"Loblolly" : (189, 201, 206),
"Lochinvar" : ( 44, 140, 132),
"Lochmara" : ( 0, 126, 199),
"Locust" : (168, 175, 142),
"Log Cabin" : ( 36, 42, 29),
"Logan" : (170, 169, 205),
"Lola" : (223, 207, 219),
"London Hue" : (190, 166, 195),
"Lonestar" : (109, 1, 1),
"Lotus" : (134, 60, 60),
"Loulou" : ( 70, 11, 65),
"Lucky" : (175, 159, 28),
"Lucky Point" : ( 26, 26, 104),
"Lunar Green" : ( 60, 73, 58),
"Luxor Gold" : (167, 136, 44),
"Lynch" : (105, 126, 154),
"Mabel" : (217, 247, 255),
"Macaroni and Cheese" : (255, 185, 123),
"Madang" : (183, 240, 190),
"Madison" : ( 9, 37, 93),
"Madras" : ( 63, 48, 2),
"Magenta / Fuchsia" : (255, 0, 255),
"Magic Mint" : (170, 240, 209),
"Magnolia" : (248, 244, 255),
"Mahogany" : ( 78, 6, 6),
"Mai Tai" : (176, 102, 8),
"Maize" : (245, 213, 160),
"Makara" : (137, 125, 109),
"Mako" : ( 68, 73, 84),
"Malachite" : ( 11, 218, 81),
"Malibu" : (125, 200, 247),
"Mallard" : ( 35, 52, 24),
"Malta" : (189, 178, 161),
"Mamba" : (142, 129, 144),
"Manatee" : (141, 144, 161),
"Mandalay" : (173, 120, 27),
"Mandy" : (226, 84, 101),
"Mandys Pink" : (242, 195, 178),
"Mango Tango" : (231, 114, 0),
"Manhattan" : (245, 201, 153),
"Mantis" : (116, 195, 101),
"Mantle" : (139, 156, 144),
"Manz" : (238, 239, 120),
"Mardi Gras" : ( 53, 0, 54),
"Marigold" : (185, 141, 40),
"Marigold Yellow" : (251, 232, 112),
"Mariner" : ( 40, 106, 205),
"Maroon" : (128, 0, 0),
"Maroon Flush" : (195, 33, 72),
"Maroon Oak" : ( 82, 12, 23),
"Marshland" : ( 11, 15, 8),
"Martini" : (175, 160, 158),
"Martinique" : ( 54, 48, 80),
"Marzipan" : (248, 219, 157),
"Masala" : ( 64, 59, 56),
"Matisse" : ( 27, 101, 157),
"Matrix" : (176, 93, 84),
"Matterhorn" : ( 78, 59, 65),
"Mauve" : (224, 176, 255),
"Mauvelous" : (240, 145, 169),
"Maverick" : (216, 194, 213),
"Medium Carmine" : (175, 64, 53),
"Medium Purple" : (147, 112, 219),
"Medium Red Violet" : (187, 51, 133),
"Melanie" : (228, 194, 213),
"Melanzane" : ( 48, 5, 41),
"Melon" : (254, 186, 173),
"Melrose" : (199, 193, 255),
"Mercury" : (229, 229, 229),
"Merino" : (246, 240, 230),
"Merlin" : ( 65, 60, 55),
"Merlot" : (131, 25, 35),
"Metallic Bronze" : ( 73, 55, 27),
"Metallic Copper" : (113, 41, 29),
"Meteor" : (208, 125, 18),
"Meteorite" : ( 60, 31, 118),
"Mexican Red" : (167, 37, 37),
"Mid Gray" : ( 95, 95, 110),
"Midnight" : ( 1, 22, 53),
"Midnight Blue" : ( 0, 51, 102),
"Midnight Moss" : ( 4, 16, 4),
"Mikado" : ( 45, 37, 16),
"Milan" : (250, 255, 164),
"Milano Red" : (184, 17, 4),
"Milk Punch" : (255, 246, 212),
"Millbrook" : ( 89, 68, 51),
"Mimosa" : (248, 253, 211),
"Mindaro" : (227, 249, 136),
"Mine Shaft" : ( 50, 50, 50),
"Mineral Green" : ( 63, 93, 83),
"Ming" : ( 54, 116, 125),
"Minsk" : ( 63, 48, 127),
"Mint Green" : (152, 255, 152),
"Mint Julep" : (241, 238, 193),
"Mint Tulip" : (196, 244, 235),
"Mirage" : ( 22, 25, 40),
"Mischka" : (209, 210, 221),
"Mist Gray" : (196, 196, 188),
"Mobster" : (127, 117, 137),
"Moccaccino" : (110, 29, 20),
"Mocha" : (120, 45, 25),
"Mojo" : (192, 71, 55),
"Mona Lisa" : (255, 161, 148),
"Monarch" : (139, 7, 35),
"Mondo" : ( 74, 60, 48),
"Mongoose" : (181, 162, 127),
"Monsoon" : (138, 131, 137),
"Monte Carlo" : (131, 208, 198),
"Monza" : (199, 3, 30),
"Moody Blue" : (127, 118, 211),
"Moon Glow" : (252, 254, 218),
"Moon Mist" : (220, 221, 204),
"Moon Raker" : (214, 206, 246),
"Morning Glory" : (158, 222, 224),
"Morocco Brown" : ( 68, 29, 0),
"Mortar" : ( 80, 67, 81),
"Mosque" : ( 3, 106, 110),
"Moss Green" : (173, 223, 173),
"Mountain Meadow" : ( 26, 179, 133),
"Mountain Mist" : (149, 147, 150),
"Mountbatten Pink" : (153, 122, 141),
"Muddy Waters" : (183, 142, 92),
"Muesli" : (170, 139, 91),
"Mulberry" : (197, 75, 140),
"Mulberry Wood" : ( 92, 5, 54),
"Mule Fawn" : (140, 71, 47),
"Mulled Wine" : ( 78, 69, 98),
"Mustard" : (255, 219, 88),
"My Pink" : (214, 145, 136),
"My Sin" : (255, 179, 31),
"Mystic" : (226, 235, 237),
"Nandor" : ( 75, 93, 82),
"Napa" : (172, 164, 148),
"Narvik" : (237, 249, 241),
"Natural Gray" : (139, 134, 128),
"Navajo White" : (255, 222, 173),