summaryrefslogtreecommitdiff
path: root/ansi.py
blob: 5fde4af56c9ef18254cd562ca19b10d853597e93 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
#!/usr/bin/env python3

from abc import abstractmethod
import difflib
import io
import logging
import re
import sys
from typing import Any, Callable, Dict, Iterable, Optional, Tuple

from overrides import overrides

import logging_utils

logger = logging.getLogger(__name__)

# https://en.wikipedia.org/wiki/ANSI_escape_code


COLOR_NAMES_TO_RGB: Dict[str, Tuple[int, int, int]] = {
    "wannabe.house": (0x00, 0x00, 95),
    "cheetah.house": (95, 0x00, 0x00),
    "meerkat.cabin": (95, 0x00, 95),
    "backup.house": (175, 95, 0),
    "kiosk.house": (90, 95, 0),
    "rpi": (208, 95, 0),
    "black": (0x00, 0x00, 0x00),
    "navy blue": (0x00, 0x00, 0x80),
    "dark blue": (0x00, 0x00, 0xC8),
    "blue": (0x00, 0x00, 0xFF),
    "stratos": (0x00, 0x07, 0x41),
    "swamp": (0x00, 0x1B, 0x1C),
    "resolution blue": (0x00, 0x23, 0x87),
    "deep fir": (0x00, 0x29, 0x00),
    "burnham": (0x00, 0x2E, 0x20),
    "klein blue": (0x00, 0x2F, 0xA7),
    "prussian blue": (0x00, 0x31, 0x53),
    "midnight blue": (0x00, 0x33, 0x66),
    "smalt": (0x00, 0x33, 0x99),
    "deep teal": (0x00, 0x35, 0x32),
    "cyprus": (0x00, 0x3E, 0x40),
    "kaitoke green": (0x00, 0x46, 0x20),
    "cobalt": (0x00, 0x47, 0xAB),
    "crusoe": (0x00, 0x48, 0x16),
    "sherpa blue": (0x00, 0x49, 0x50),
    "endeavour": (0x00, 0x56, 0xA7),
    "camarone": (0x00, 0x58, 0x1A),
    "science blue": (0x00, 0x66, 0xCC),
    "blue ribbon": (0x00, 0x66, 0xFF),
    "tropical rain forest": (0x00, 0x75, 0x5E),
    "allports": (0x00, 0x76, 0xA3),
    "deep cerulean": (0x00, 0x7B, 0xA7),
    "lochmara": (0x00, 0x7E, 0xC7),
    "azure radiance": (0x00, 0x7F, 0xFF),
    "teal": (0x00, 0x80, 0x80),
    "bondi blue": (0x00, 0x95, 0xB6),
    "pacific blue": (0x00, 0x9D, 0xC4),
    "persian green": (0x00, 0xA6, 0x93),
    "jade": (0x00, 0xA8, 0x6B),
    "caribbean green": (0x00, 0xCC, 0x99),
    "robin's egg blue": (0x00, 0xCC, 0xCC),
    "green": (0x00, 0xFF, 0x00),
    "spring green": (0x00, 0xFF, 0x7F),
    "cyan": (0x00, 0xFF, 0xFF),
    "aqua": (0x00, 0xFF, 0xFF),
    "blue charcoal": (0x01, 0x0D, 0x1A),
    "midnight": (0x01, 0x16, 0x35),
    "holly": (0x01, 0x1D, 0x13),
    "daintree": (0x01, 0x27, 0x31),
    "cardin green": (0x01, 0x36, 0x1C),
    "county green": (0x01, 0x37, 0x1A),
    "astronaut blue": (0x01, 0x3E, 0x62),
    "regal blue": (0x01, 0x3F, 0x6A),
    "aqua deep": (0x01, 0x4B, 0x43),
    "orient": (0x01, 0x5E, 0x85),
    "blue stone": (0x01, 0x61, 0x62),
    "fun green": (0x01, 0x6D, 0x39),
    "pine green": (0x01, 0x79, 0x6F),
    "blue lagoon": (0x01, 0x79, 0x87),
    "deep sea": (0x01, 0x82, 0x6B),
    "green haze": (0x01, 0xA3, 0x68),
    "english holly": (0x02, 0x2D, 0x15),
    "sherwood green": (0x02, 0x40, 0x2C),
    "congress blue": (0x02, 0x47, 0x8E),
    "evening sea": (0x02, 0x4E, 0x46),
    "bahama blue": (0x02, 0x63, 0x95),
    "observatory": (0x02, 0x86, 0x6F),
    "cerulean": (0x02, 0xA4, 0xD3),
    "tangaroa": (0x03, 0x16, 0x3C),
    "green vogue": (0x03, 0x2B, 0x52),
    "mosque": (0x03, 0x6A, 0x6E),
    "midnight moss": (0x04, 0x10, 0x04),
    "black pearl": (0x04, 0x13, 0x22),
    "blue whale": (0x04, 0x2E, 0x4C),
    "zuccini": (0x04, 0x40, 0x22),
    "teal blue": (0x04, 0x42, 0x59),
    "deep cove": (0x05, 0x10, 0x40),
    "gulf blue": (0x05, 0x16, 0x57),
    "venice blue": (0x05, 0x59, 0x89),
    "watercourse": (0x05, 0x6F, 0x57),
    "catalina blue": (0x06, 0x2A, 0x78),
    "tiber": (0x06, 0x35, 0x37),
    "gossamer": (0x06, 0x9B, 0x81),
    "niagara": (0x06, 0xA1, 0x89),
    "tarawera": (0x07, 0x3A, 0x50),
    "jaguar": (0x08, 0x01, 0x10),
    "black bean": (0x08, 0x19, 0x10),
    "deep sapphire": (0x08, 0x25, 0x67),
    "elf green": (0x08, 0x83, 0x70),
    "bright turquoise": (0x08, 0xE8, 0xDE),
    "downriver": (0x09, 0x22, 0x56),
    "palm green": (0x09, 0x23, 0x0F),
    "madison": (0x09, 0x25, 0x5D),
    "bottle green": (0x09, 0x36, 0x24),
    "deep sea green": (0x09, 0x58, 0x59),
    "salem": (0x09, 0x7F, 0x4B),
    "black russian": (0x0A, 0x00, 0x1C),
    "dark fern": (0x0A, 0x48, 0x0D),
    "japanese laurel": (0x0A, 0x69, 0x06),
    "atoll": (0x0A, 0x6F, 0x75),
    "cod gray": (0x0B, 0x0B, 0x0B),
    "marshland": (0x0B, 0x0F, 0x08),
    "gordons green": (0x0B, 0x11, 0x07),
    "black forest": (0x0B, 0x13, 0x04),
    "san felix": (0x0B, 0x62, 0x07),
    "malachite": (0x0B, 0xDA, 0x51),
    "ebony": (0x0C, 0x0B, 0x1D),
    "woodsmoke": (0x0C, 0x0D, 0x0F),
    "racing green": (0x0C, 0x19, 0x11),
    "surfie green": (0x0C, 0x7A, 0x79),
    "blue chill": (0x0C, 0x89, 0x90),
    "black rock": (0x0D, 0x03, 0x32),
    "bunker": (0x0D, 0x11, 0x17),
    "aztec": (0x0D, 0x1C, 0x19),
    "bush": (0x0D, 0x2E, 0x1C),
    "cinder": (0x0E, 0x0E, 0x18),
    "firefly": (0x0E, 0x2A, 0x30),
    "torea bay": (0x0F, 0x2D, 0x9E),
    "vulcan": (0x10, 0x12, 0x1D),
    "green waterloo": (0x10, 0x14, 0x05),
    "eden": (0x10, 0x58, 0x52),
    "arapawa": (0x11, 0x0C, 0x6C),
    "ultramarine": (0x12, 0x0A, 0x8F),
    "elephant": (0x12, 0x34, 0x47),
    "jewel": (0x12, 0x6B, 0x40),
    "diesel": (0x13, 0x00, 0x00),
    "asphalt": (0x13, 0x0A, 0x06),
    "blue zodiac": (0x13, 0x26, 0x4D),
    "parsley": (0x13, 0x4F, 0x19),
    "nero": (0x14, 0x06, 0x00),
    "tory blue": (0x14, 0x50, 0xAA),
    "bunting": (0x15, 0x1F, 0x4C),
    "denim": (0x15, 0x60, 0xBD),
    "genoa": (0x15, 0x73, 0x6B),
    "mirage": (0x16, 0x19, 0x28),
    "hunter green": (0x16, 0x1D, 0x10),
    "big stone": (0x16, 0x2A, 0x40),
    "celtic": (0x16, 0x32, 0x22),
    "timber green": (0x16, 0x32, 0x2C),
    "gable green": (0x16, 0x35, 0x31),
    "pine tree": (0x17, 0x1F, 0x04),
    "chathams blue": (0x17, 0x55, 0x79),
    "deep forest green": (0x18, 0x2D, 0x09),
    "dark green": (0x18, 0x2D, 0x09),
    "blumine": (0x18, 0x58, 0x7A),
    "palm leaf": (0x19, 0x33, 0x0E),
    "nile blue": (0x19, 0x37, 0x51),
    "fun blue": (0x19, 0x59, 0xA8),
    "lucky point": (0x1A, 0x1A, 0x68),
    "mountain meadow": (0x1A, 0xB3, 0x85),
    "tolopea": (0x1B, 0x02, 0x45),
    "haiti": (0x1B, 0x10, 0x35),
    "deep koamaru": (0x1B, 0x12, 0x7B),
    "acadia": (0x1B, 0x14, 0x04),
    "seaweed": (0x1B, 0x2F, 0x11),
    "biscay": (0x1B, 0x31, 0x62),
    "matisse": (0x1B, 0x65, 0x9D),
    "crowshead": (0x1C, 0x12, 0x08),
    "rangoon green": (0x1C, 0x1E, 0x13),
    "persian blue": (0x1C, 0x39, 0xBB),
    "everglade": (0x1C, 0x40, 0x2E),
    "elm": (0x1C, 0x7C, 0x7D),
    "green pea": (0x1D, 0x61, 0x42),
    "creole": (0x1E, 0x0F, 0x04),
    "karaka": (0x1E, 0x16, 0x09),
    "el paso": (0x1E, 0x17, 0x08),
    "cello": (0x1E, 0x38, 0x5B),
    "te papa green": (0x1E, 0x43, 0x3C),
    "dodger blue": (0x1E, 0x90, 0xFF),
    "eastern blue": (0x1E, 0x9A, 0xB0),
    "night rider": (0x1F, 0x12, 0x0F),
    "java": (0x1F, 0xC2, 0xC2),
    "jacksons purple": (0x20, 0x20, 0x8D),
    "cloud burst": (0x20, 0x2E, 0x54),
    "blue dianne": (0x20, 0x48, 0x52),
    "eternity": (0x21, 0x1A, 0x0E),
    "deep blue": (0x22, 0x08, 0x78),
    "forest green": (0x22, 0x8B, 0x22),
    "mallard": (0x23, 0x34, 0x18),
    "violet": (0x24, 0x0A, 0x40),
    "kilamanjaro": (0x24, 0x0C, 0x02),
    "log cabin": (0x24, 0x2A, 0x1D),
    "black olive": (0x24, 0x2E, 0x16),
    "green house": (0x24, 0x50, 0x0F),
    "graphite": (0x25, 0x16, 0x07),
    "cannon black": (0x25, 0x17, 0x06),
    "port gore": (0x25, 0x1F, 0x4F),
    "shark": (0x25, 0x27, 0x2C),
    "green kelp": (0x25, 0x31, 0x1C),
    "curious blue": (0x25, 0x96, 0xD1),
    "paua": (0x26, 0x03, 0x68),
    "paris m": (0x26, 0x05, 0x6A),
    "wood bark": (0x26, 0x11, 0x05),
    "gondola": (0x26, 0x14, 0x14),
    "steel gray": (0x26, 0x23, 0x35),
    "light gray": (0x26, 0x23, 0x35),
    "ebony clay": (0x26, 0x28, 0x3B),
    "bay of many": (0x27, 0x3A, 0x81),
    "plantation": (0x27, 0x50, 0x4B),
    "eucalyptus": (0x27, 0x8A, 0x5B),
    "oil": (0x28, 0x1E, 0x15),
    "astronaut": (0x28, 0x3A, 0x77),
    "mariner": (0x28, 0x6A, 0xCD),
    "violent violet": (0x29, 0x0C, 0x5E),
    "bastille": (0x29, 0x21, 0x30),
    "zeus": (0x29, 0x23, 0x19),
    "charade": (0x29, 0x29, 0x37),
    "jelly bean": (0x29, 0x7B, 0x9A),
    "jungle green": (0x29, 0xAB, 0x87),
    "cherry pie": (0x2A, 0x03, 0x59),
    "coffee bean": (0x2A, 0x14, 0x0E),
    "baltic sea": (0x2A, 0x26, 0x30),
    "turtle green": (0x2A, 0x38, 0x0B),
    "cerulean blue": (0x2A, 0x52, 0xBE),
    "sepia black": (0x2B, 0x02, 0x02),
    "valhalla": (0x2B, 0x19, 0x4F),
    "heavy metal": (0x2B, 0x32, 0x28),
    "blue gem": (0x2C, 0x0E, 0x8C),
    "revolver": (0x2C, 0x16, 0x32),
    "bleached cedar": (0x2C, 0x21, 0x33),
    "lochinvar": (0x2C, 0x8C, 0x84),
    "mikado": (0x2D, 0x25, 0x10),
    "outer space": (0x2D, 0x38, 0x3A),
    "st tropaz": (0x2D, 0x56, 0x9B),
    "jacaranda": (0x2E, 0x03, 0x29),
    "jacko bean": (0x2E, 0x19, 0x05),
    "rangitoto": (0x2E, 0x32, 0x22),
    "rhino": (0x2E, 0x3F, 0x62),
    "sea green": (0x2E, 0x8B, 0x57),
    "scooter": (0x2E, 0xBF, 0xD4),
    "onion": (0x2F, 0x27, 0x0E),
    "governor bay": (0x2F, 0x3C, 0xB3),
    "sapphire": (0x2F, 0x51, 0x9E),
    "spectra": (0x2F, 0x5A, 0x57),
    "casal": (0x2F, 0x61, 0x68),
    "melanzane": (0x30, 0x05, 0x29),
    "cocoa brown": (0x30, 0x1F, 0x1E),
    "woodrush": (0x30, 0x2A, 0x0F),
    "san juan": (0x30, 0x4B, 0x6A),
    "turquoise": (0x30, 0xD5, 0xC8),
    "eclipse": (0x31, 0x1C, 0x17),
    "pickled bluewood": (0x31, 0x44, 0x59),
    "azure": (0x31, 0x5B, 0xA1),
    "calypso": (0x31, 0x72, 0x8D),
    "paradiso": (0x31, 0x7D, 0x82),
    "persian indigo": (0x32, 0x12, 0x7A),
    "blackcurrant": (0x32, 0x29, 0x3A),
    "mine shaft": (0x32, 0x32, 0x32),
    "stromboli": (0x32, 0x5D, 0x52),
    "bilbao": (0x32, 0x7C, 0x14),
    "astral": (0x32, 0x7D, 0xA0),
    "christalle": (0x33, 0x03, 0x6B),
    "thunder": (0x33, 0x29, 0x2F),
    "shamrock": (0x33, 0xCC, 0x99),
    "tamarind": (0x34, 0x15, 0x15),
    "mardi gras": (0x35, 0x00, 0x36),
    "valentino": (0x35, 0x0E, 0x42),
    "jagger": (0x35, 0x0E, 0x57),
    "tuna": (0x35, 0x35, 0x42),
    "chambray": (0x35, 0x4E, 0x8C),
    "martinique": (0x36, 0x30, 0x50),
    "tuatara": (0x36, 0x35, 0x34),
    "waiouru": (0x36, 0x3C, 0x0D),
    "ming": (0x36, 0x74, 0x7D),
    "la palma": (0x36, 0x87, 0x16),
    "chocolate": (0x37, 0x02, 0x02),
    "clinker": (0x37, 0x1D, 0x09),
    "brown tumbleweed": (0x37, 0x29, 0x0E),
    "birch": (0x37, 0x30, 0x21),
    "oracle": (0x37, 0x74, 0x75),
    "blue diamond": (0x38, 0x04, 0x74),
    "grape": (0x38, 0x1A, 0x51),
    "dune": (0x38, 0x35, 0x33),
    "oxford blue": (0x38, 0x45, 0x55),
    "clover": (0x38, 0x49, 0x10),
    "limed spruce": (0x39, 0x48, 0x51),
    "dell": (0x39, 0x64, 0x13),
    "toledo": (0x3A, 0x00, 0x20),
    "sambuca": (0x3A, 0x20, 0x10),
    "jacarta": (0x3A, 0x2A, 0x6A),
    "william": (0x3A, 0x68, 0x6C),
    "killarney": (0x3A, 0x6A, 0x47),
    "keppel": (0x3A, 0xB0, 0x9E),
    "temptress": (0x3B, 0x00, 0x0B),
    "aubergine": (0x3B, 0x09, 0x10),
    "jon": (0x3B, 0x1F, 0x1F),
    "treehouse": (0x3B, 0x28, 0x20),
    "amazon": (0x3B, 0x7A, 0x57),
    "boston blue": (0x3B, 0x91, 0xB4),
    "windsor": (0x3C, 0x08, 0x78),
    "rebel": (0x3C, 0x12, 0x06),
    "meteorite": (0x3C, 0x1F, 0x76),
    "dark ebony": (0x3C, 0x20, 0x05),
    "camouflage": (0x3C, 0x39, 0x10),
    "bright gray": (0x3C, 0x41, 0x51),
    "cape cod": (0x3C, 0x44, 0x43),
    "lunar green": (0x3C, 0x49, 0x3A),
    "bean  ": (0x3D, 0x0C, 0x02),
    "bistre": (0x3D, 0x2B, 0x1F),
    "goblin": (0x3D, 0x7D, 0x52),
    "kingfisher daisy": (0x3E, 0x04, 0x80),
    "cedar": (0x3E, 0x1C, 0x14),
    "english walnut": (0x3E, 0x2B, 0x23),
    "black marlin": (0x3E, 0x2C, 0x1C),
    "ship gray": (0x3E, 0x3A, 0x44),
    "pelorous": (0x3E, 0xAB, 0xBF),
    "bronze": (0x3F, 0x21, 0x09),
    "cola": (0x3F, 0x25, 0x00),
    "madras": (0x3F, 0x30, 0x02),
    "minsk": (0x3F, 0x30, 0x7F),
    "cabbage pont": (0x3F, 0x4C, 0x3A),
    "tom thumb": (0x3F, 0x58, 0x3B),
    "mineral green": (0x3F, 0x5D, 0x53),
    "puerto rico": (0x3F, 0xC1, 0xAA),
    "harlequin": (0x3F, 0xFF, 0x00),
    "brown pod": (0x40, 0x18, 0x01),
    "cork": (0x40, 0x29, 0x1D),
    "masala": (0x40, 0x3B, 0x38),
    "thatch green": (0x40, 0x3D, 0x19),
    "fiord": (0x40, 0x51, 0x69),
    "viridian": (0x40, 0x82, 0x6D),
    "chateau green": (0x40, 0xA8, 0x60),
    "ripe plum": (0x41, 0x00, 0x56),
    "paco": (0x41, 0x1F, 0x10),
    "deep oak": (0x41, 0x20, 0x10),
    "merlin": (0x41, 0x3C, 0x37),
    "gun powder": (0x41, 0x42, 0x57),
    "east bay": (0x41, 0x4C, 0x7D),
    "royal blue": (0x41, 0x69, 0xE1),
    "ocean green": (0x41, 0xAA, 0x78),
    "burnt maroon": (0x42, 0x03, 0x03),
    "lisbon brown": (0x42, 0x39, 0x21),
    "faded jade": (0x42, 0x79, 0x77),
    "scarlet gum": (0x43, 0x15, 0x60),
    "iroko": (0x43, 0x31, 0x20),
    "armadillo": (0x43, 0x3E, 0x37),
    "river bed": (0x43, 0x4C, 0x59),
    "green leaf": (0x43, 0x6A, 0x0D),
    "barossa": (0x44, 0x01, 0x2D),
    "morocco brown": (0x44, 0x1D, 0x00),
    "mako": (0x44, 0x49, 0x54),
    "kelp": (0x45, 0x49, 0x36),
    "san marino": (0x45, 0x6C, 0xAC),
    "picton blue": (0x45, 0xB1, 0xE8),
    "loulou": (0x46, 0x0B, 0x41),
    "crater brown": (0x46, 0x24, 0x25),
    "gray asparagus": (0x46, 0x59, 0x45),
    "steel blue": (0x46, 0x82, 0xB4),
    "rustic red": (0x48, 0x04, 0x04),
    "bulgarian rose": (0x48, 0x06, 0x07),
    "clairvoyant": (0x48, 0x06, 0x56),
    "cocoa bean": (0x48, 0x1C, 0x1C),
    "woody brown": (0x48, 0x31, 0x31),
    "taupe": (0x48, 0x3C, 0x32),
    "van cleef": (0x49, 0x17, 0x0C),
    "brown derby": (0x49, 0x26, 0x15),
    "metallic bronze": (0x49, 0x37, 0x1B),
    "verdun green": (0x49, 0x54, 0x00),
    "blue bayoux": (0x49, 0x66, 0x79),
    "bismark": (0x49, 0x71, 0x83),
    "bracken": (0x4A, 0x2A, 0x04),
    "deep bronze": (0x4A, 0x30, 0x04),
    "mondo": (0x4A, 0x3C, 0x30),
    "tundora": (0x4A, 0x42, 0x44),
    "gravel": (0x4A, 0x44, 0x4B),
    "trout": (0x4A, 0x4E, 0x5A),
    "pigment indigo": (0x4B, 0x00, 0x82),
    "nandor": (0x4B, 0x5D, 0x52),
    "saddle": (0x4C, 0x30, 0x24),
    "abbey": (0x4C, 0x4F, 0x56),
    "blackberry": (0x4D, 0x01, 0x35),
    "cab sav": (0x4D, 0x0A, 0x18),
    "indian tan": (0x4D, 0x1E, 0x01),
    "cowboy": (0x4D, 0x28, 0x2D),
    "livid brown": (0x4D, 0x28, 0x2E),
    "rock": (0x4D, 0x38, 0x33),
    "punga": (0x4D, 0x3D, 0x14),
    "bronzetone": (0x4D, 0x40, 0x0F),
    "woodland": (0x4D, 0x53, 0x28),
    "mahogany": (0x4E, 0x06, 0x06),
    "bossanova": (0x4E, 0x2A, 0x5A),
    "matterhorn": (0x4E, 0x3B, 0x41),
    "bronze olive": (0x4E, 0x42, 0x0C),
    "mulled wine": (0x4E, 0x45, 0x62),
    "axolotl": (0x4E, 0x66, 0x49),
    "wedgewood": (0x4E, 0x7F, 0x9E),
    "shakespeare": (0x4E, 0xAB, 0xD1),
    "honey flower": (0x4F, 0x1C, 0x70),
    "daisy bush": (0x4F, 0x23, 0x98),
    "indigo": (0x4F, 0x69, 0xC6),
    "fern green": (0x4F, 0x79, 0x42),
    "fruit salad": (0x4F, 0x9D, 0x5D),
    "apple": (0x4F, 0xA8, 0x3D),
    "mortar": (0x50, 0x43, 0x51),
    "kashmir blue": (0x50, 0x70, 0x96),
    "cutty sark": (0x50, 0x76, 0x72),
    "emerald": (0x50, 0xC8, 0x78),
    "emperor": (0x51, 0x46, 0x49),
    "chalet green": (0x51, 0x6E, 0x3D),
    "como": (0x51, 0x7C, 0x66),
    "smalt blue": (0x51, 0x80, 0x8F),
    "castro": (0x52, 0x00, 0x1F),
    "maroon oak": (0x52, 0x0C, 0x17),
    "gigas": (0x52, 0x3C, 0x94),
    "voodoo": (0x53, 0x34, 0x55),
    "victoria": (0x53, 0x44, 0x91),
    "hippie green": (0x53, 0x82, 0x4B),
    "heath": (0x54, 0x10, 0x12),
    "judge gray": (0x54, 0x43, 0x33),
    "fuscous gray": (0x54, 0x53, 0x4D),
    "vida loca": (0x54, 0x90, 0x19),
    "cioccolato": (0x55, 0x28, 0x0C),
    "saratoga": (0x55, 0x5B, 0x10),
    "finlandia": (0x55, 0x6D, 0x56),
    "havelock blue": (0x55, 0x90, 0xD9),
    "fountain blue": (0x56, 0xB4, 0xBE),
    "spring leaves": (0x57, 0x83, 0x63),
    "saddle brown": (0x58, 0x34, 0x01),
    "scarpa flow": (0x58, 0x55, 0x62),
    "cactus": (0x58, 0x71, 0x56),
    "hippie blue": (0x58, 0x9A, 0xAF),
    "wine berry": (0x59, 0x1D, 0x35),
    "brown bramble": (0x59, 0x28, 0x04),
    "congo brown": (0x59, 0x37, 0x37),
    "millbrook": (0x59, 0x44, 0x33),
    "waikawa gray": (0x5A, 0x6E, 0x9C),
    "horizon": (0x5A, 0x87, 0xA0),
    "jambalaya": (0x5B, 0x30, 0x13),
    "bordeaux": (0x5C, 0x01, 0x20),
    "mulberry wood": (0x5C, 0x05, 0x36),
    "carnaby tan": (0x5C, 0x2E, 0x01),
    "comet": (0x5C, 0x5D, 0x75),
    "redwood": (0x5D, 0x1E, 0x0F),
    "don juan": (0x5D, 0x4C, 0x51),
    "chicago": (0x5D, 0x5C, 0x58),
    "verdigris": (0x5D, 0x5E, 0x37),
    "dingley": (0x5D, 0x77, 0x47),
    "breaker bay": (0x5D, 0xA1, 0x9F),
    "kabul": (0x5E, 0x48, 0x3E),
    "hemlock": (0x5E, 0x5D, 0x3B),
    "irish coffee": (0x5F, 0x3D, 0x26),
    "mid gray": (0x5F, 0x5F, 0x6E),
    "shuttle gray": (0x5F, 0x66, 0x72),
    "aqua forest": (0x5F, 0xA7, 0x77),
    "tradewind": (0x5F, 0xB3, 0xAC),
    "horses neck": (0x60, 0x49, 0x13),
    "smoky": (0x60, 0x5B, 0x73),
    "corduroy": (0x60, 0x6E, 0x68),
    "danube": (0x60, 0x93, 0xD1),
    "espresso": (0x61, 0x27, 0x18),
    "eggplant": (0x61, 0x40, 0x51),
    "costa del sol": (0x61, 0x5D, 0x30),
    "glade green": (0x61, 0x84, 0x5F),
    "buccaneer": (0x62, 0x2F, 0x30),
    "quincy": (0x62, 0x3F, 0x2D),
    "butterfly bush": (0x62, 0x4E, 0x9A),
    "west coast": (0x62, 0x51, 0x19),
    "finch": (0x62, 0x66, 0x49),
    "patina": (0x63, 0x9A, 0x8F),
    "fern": (0x63, 0xB7, 0x6C),
    "blue violet": (0x64, 0x56, 0xB7),
    "dolphin": (0x64, 0x60, 0x77),
    "storm dust": (0x64, 0x64, 0x63),
    "siam": (0x64, 0x6A, 0x54),
    "nevada": (0x64, 0x6E, 0x75),
    "cornflower blue": (0x64, 0x95, 0xED),
    "viking": (0x64, 0xCC, 0xDB),
    "rosewood": (0x65, 0x00, 0x0B),
    "cherrywood": (0x65, 0x1A, 0x14),
    "purple heart": (0x65, 0x2D, 0xC1),
    "fern frond": (0x65, 0x72, 0x20),
    "willow grove": (0x65, 0x74, 0x5D),
    "hoki": (0x65, 0x86, 0x9F),
    "pompadour": (0x66, 0x00, 0x45),
    "purple": (0x66, 0x00, 0x99),
    "dark purple": (0x36, 0x00, 0x79),
    "tyrian purple": (0x66, 0x02, 0x3C),
    "dark tan": (0x66, 0x10, 0x10),
    "silver tree": (0x66, 0xB5, 0x8F),
    "bright green": (0x66, 0xFF, 0x00),
    "screamin' green": (0x66, 0xFF, 0x66),
    "black rose": (0x67, 0x03, 0x2D),
    "scampi": (0x67, 0x5F, 0xA6),
    "ironside gray": (0x67, 0x66, 0x62),
    "viridian green": (0x67, 0x89, 0x75),
    "christi": (0x67, 0xA7, 0x12),
    "nutmeg wood finish": (0x68, 0x36, 0x00),
    "zambezi": (0x68, 0x55, 0x58),
    "salt box": (0x68, 0x5E, 0x6E),
    "tawny port": (0x69, 0x25, 0x45),
    "finn": (0x69, 0x2D, 0x54),
    "scorpion": (0x69, 0x5F, 0x62),
    "lynch": (0x69, 0x7E, 0x9A),
    "spice": (0x6A, 0x44, 0x2E),
    "himalaya": (0x6A, 0x5D, 0x1B),
    "soya bean": (0x6A, 0x60, 0x51),
    "hairy heath": (0x6B, 0x2A, 0x14),
    "royal purple": (0x6B, 0x3F, 0xA0),
    "shingle fawn": (0x6B, 0x4E, 0x31),
    "dorado": (0x6B, 0x57, 0x55),
    "bermuda gray": (0x6B, 0x8B, 0xA2),
    "olive drab": (0x6B, 0x8E, 0x23),
    "eminence": (0x6C, 0x30, 0x82),
    "turquoise blue": (0x6C, 0xDA, 0xE7),
    "lonestar": (0x6D, 0x01, 0x01),
    "pine cone": (0x6D, 0x5E, 0x54),
    "dove gray": (0x6D, 0x6C, 0x6C),
    "juniper": (0x6D, 0x92, 0x92),
    "gothic": (0x6D, 0x92, 0xA1),
    "red oxide": (0x6E, 0x09, 0x02),
    "moccaccino": (0x6E, 0x1D, 0x14),
    "pickled bean": (0x6E, 0x48, 0x26),
    "dallas": (0x6E, 0x4B, 0x26),
    "kokoda": (0x6E, 0x6D, 0x57),
    "pale sky": (0x6E, 0x77, 0x83),
    "cafe royale": (0x6F, 0x44, 0x0C),
    "flint": (0x6F, 0x6A, 0x61),
    "highland": (0x6F, 0x8E, 0x63),
    "limeade": (0x6F, 0x9D, 0x02),
    "downy": (0x6F, 0xD0, 0xC5),
    "persian plum": (0x70, 0x1C, 0x1C),
    "sepia": (0x70, 0x42, 0x14),
    "antique bronze": (0x70, 0x4A, 0x07),
    "ferra": (0x70, 0x4F, 0x50),
    "coffee": (0x70, 0x65, 0x55),
    "slate gray": (0x70, 0x80, 0x90),
    "cedar wood finish": (0x71, 0x1A, 0x00),
    "metallic copper": (0x71, 0x29, 0x1D),
    "affair": (0x71, 0x46, 0x93),
    "studio": (0x71, 0x4A, 0xB2),
    "tobacco brown": (0x71, 0x5D, 0x47),
    "yellow metal": (0x71, 0x63, 0x38),
    "peat": (0x71, 0x6B, 0x56),
    "olivetone": (0x71, 0x6E, 0x10),
    "storm gray": (0x71, 0x74, 0x86),
    "sirocco": (0x71, 0x80, 0x80),
    "aquamarine blue": (0x71, 0xD9, 0xE2),
    "venetian red": (0x72, 0x01, 0x0F),
    "old copper": (0x72, 0x4A, 0x2F),
    "go ben": (0x72, 0x6D, 0x4E),
    "raven": (0x72, 0x7B, 0x89),
    "seance": (0x73, 0x1E, 0x8F),
    "raw umber": (0x73, 0x4A, 0x12),
    "kimberly": (0x73, 0x6C, 0x9F),
    "crocodile": (0x73, 0x6D, 0x58),
    "crete": (0x73, 0x78, 0x29),
    "xanadu": (0x73, 0x86, 0x78),
    "spicy mustard": (0x74, 0x64, 0x0D),
    "limed ash": (0x74, 0x7D, 0x63),
    "rolling stone": (0x74, 0x7D, 0x83),
    "blue smoke": (0x74, 0x88, 0x81),
    "laurel": (0x74, 0x93, 0x78),
    "mantis": (0x74, 0xC3, 0x65),
    "russett": (0x75, 0x5A, 0x57),
    "deluge": (0x75, 0x63, 0xA8),
    "cosmic": (0x76, 0x39, 0x5D),
    "blue marguerite": (0x76, 0x66, 0xC6),
    "lima": (0x76, 0xBD, 0x17),
    "sky blue": (0x76, 0xD7, 0xEA),
    "dark burgundy": (0x77, 0x0F, 0x05),
    "crown of thorns": (0x77, 0x1F, 0x1F),
    "walnut": (0x77, 0x3F, 0x1A),
    "pablo": (0x77, 0x6F, 0x61),
    "pacifika": (0x77, 0x81, 0x20),
    "oxley": (0x77, 0x9E, 0x86),
    "pastel green": (0x77, 0xDD, 0x77),
    "japanese maple": (0x78, 0x01, 0x09),
    "mocha": (0x78, 0x2D, 0x19),
    "peanut": (0x78, 0x2F, 0x16),
    "camouflage green": (0x78, 0x86, 0x6B),
    "wasabi": (0x78, 0x8A, 0x25),
    "ship cove": (0x78, 0x8B, 0xBA),
    "sea nymph": (0x78, 0xA3, 0x9C),
    "roman coffee": (0x79, 0x5D, 0x4C),
    "old lavender": (0x79, 0x68, 0x78),
    "rum": (0x79, 0x69, 0x89),
    "fedora": (0x79, 0x6A, 0x78),
    "sandstone": (0x79, 0x6D, 0x62),
    "spray": (0x79, 0xDE, 0xEC),
    "siren": (0x7A, 0x01, 0x3A),
    "fuchsia blue": (0x7A, 0x58, 0xC1),
    "boulder": (0x7A, 0x7A, 0x7A),
    "wild blue yonder": (0x7A, 0x89, 0xB8),
    "de york": (0x7A, 0xC4, 0x88),
    "red beech": (0x7B, 0x38, 0x01),
    "cinnamon": (0x7B, 0x3F, 0x00),
    "yukon gold": (0x7B, 0x66, 0x08),
    "tapa": (0x7B, 0x78, 0x74),
    "waterloo ": (0x7B, 0x7C, 0x94),
    "flax smoke": (0x7B, 0x82, 0x65),
    "amulet": (0x7B, 0x9F, 0x80),
    "asparagus": (0x7B, 0xA0, 0x5B),
    "kenyan copper": (0x7C, 0x1C, 0x05),
    "pesto": (0x7C, 0x76, 0x31),
    "topaz": (0x7C, 0x77, 0x8A),
    "concord": (0x7C, 0x7B, 0x7A),
    "jumbo": (0x7C, 0x7B, 0x82),
    "trendy green": (0x7C, 0x88, 0x1A),
    "gumbo": (0x7C, 0xA1, 0xA6),
    "acapulco": (0x7C, 0xB0, 0xA1),
    "neptune": (0x7C, 0xB7, 0xBB),
    "pueblo": (0x7D, 0x2C, 0x14),
    "bay leaf": (0x7D, 0xA9, 0x8D),
    "malibu": (0x7D, 0xC8, 0xF7),
    "bermuda": (0x7D, 0xD8, 0xC6),
    "copper canyon": (0x7E, 0x3A, 0x15),
    "claret": (0x7F, 0x17, 0x34),
    "peru tan": (0x7F, 0x3A, 0x02),
    "falcon": (0x7F, 0x62, 0x6D),
    "mobster": (0x7F, 0x75, 0x89),
    "moody blue": (0x7F, 0x76, 0xD3),
    "chartreuse": (0x7F, 0xFF, 0x00),
    "aquamarine": (0x7F, 0xFF, 0xD4),
    "maroon": (0x80, 0x00, 0x00),
    "rose bud cherry": (0x80, 0x0B, 0x47),
    "falu red": (0x80, 0x18, 0x18),
    "red robin": (0x80, 0x34, 0x1F),
    "vivid violet": (0x80, 0x37, 0x90),
    "russet": (0x80, 0x46, 0x1B),
    "friar gray": (0x80, 0x7E, 0x79),
    "olive": (0x80, 0x80, 0x00),
    "gray": (0x80, 0x80, 0x80),
    "gulf stream": (0x80, 0xB3, 0xAE),
    "glacier": (0x80, 0xB3, 0xC4),
    "seagull": (0x80, 0xCC, 0xEA),
    "nutmeg": (0x81, 0x42, 0x2C),
    "spicy pink": (0x81, 0x6E, 0x71),
    "empress": (0x81, 0x73, 0x77),
    "spanish green": (0x81, 0x98, 0x85),
    "sand dune": (0x82, 0x6F, 0x65),
    "gunsmoke": (0x82, 0x86, 0x85),
    "battleship gray": (0x82, 0x8F, 0x72),
    "merlot": (0x83, 0x19, 0x23),
    "shadow": (0x83, 0x70, 0x50),
    "chelsea cucumber": (0x83, 0xAA, 0x5D),
    "monte carlo": (0x83, 0xD0, 0xC6),
    "plum": (0x84, 0x31, 0x79),
    "granny smith": (0x84, 0xA0, 0xA0),
    "chetwode blue": (0x85, 0x81, 0xD9),
    "bandicoot": (0x85, 0x84, 0x70),
    "bali hai": (0x85, 0x9F, 0xAF),
    "half baked": (0x85, 0xC4, 0xCC),
    "red devil": (0x86, 0x01, 0x11),
    "lotus": (0x86, 0x3C, 0x3C),
    "ironstone": (0x86, 0x48, 0x3C),
    "bull shot": (0x86, 0x4D, 0x1E),
    "rusty nail": (0x86, 0x56, 0x0A),
    "bitter": (0x86, 0x89, 0x74),
    "regent gray": (0x86, 0x94, 0x9F),
    "disco": (0x87, 0x15, 0x50),
    "americano": (0x87, 0x75, 0x6E),
    "hurricane": (0x87, 0x7C, 0x7B),
    "oslo gray": (0x87, 0x8D, 0x91),
    "sushi": (0x87, 0xAB, 0x39),
    "spicy mix": (0x88, 0x53, 0x42),
    "kumera": (0x88, 0x62, 0x21),
    "suva gray": (0x88, 0x83, 0x87),
    "avocado": (0x88, 0x8D, 0x65),
    "camelot": (0x89, 0x34, 0x56),
    "solid pink": (0x89, 0x38, 0x43),
    "cannon pink": (0x89, 0x43, 0x67),
    "makara": (0x89, 0x7D, 0x6D),
    "burnt umber": (0x8A, 0x33, 0x24),
    "true v": (0x8A, 0x73, 0xD6),
    "clay creek": (0x8A, 0x83, 0x60),
    "monsoon": (0x8A, 0x83, 0x89),
    "stack": (0x8A, 0x8F, 0x8A),
    "jordy blue": (0x8A, 0xB9, 0xF1),
    "electric violet": (0x8B, 0x00, 0xFF),
    "monarch": (0x8B, 0x07, 0x23),
    "corn harvest": (0x8B, 0x6B, 0x0B),
    "olive haze": (0x8B, 0x84, 0x70),
    "schooner": (0x8B, 0x84, 0x7E),
    "natural gray": (0x8B, 0x86, 0x80),
    "mantle": (0x8B, 0x9C, 0x90),
    "portage": (0x8B, 0x9F, 0xEE),
    "envy": (0x8B, 0xA6, 0x90),
    "cascade": (0x8B, 0xA9, 0xA5),
    "riptide": (0x8B, 0xE6, 0xD8),
    "cardinal pink": (0x8C, 0x05, 0x5E),
    "mule fawn": (0x8C, 0x47, 0x2F),
    "potters clay": (0x8C, 0x57, 0x38),
    "trendy pink": (0x8C, 0x64, 0x95),
    "paprika": (0x8D, 0x02, 0x26),
    "sanguine brown": (0x8D, 0x3D, 0x38),
    "tosca": (0x8D, 0x3F, 0x3F),
    "cement": (0x8D, 0x76, 0x62),
    "granite green": (0x8D, 0x89, 0x74),
    "manatee": (0x8D, 0x90, 0xA1),
    "polo blue": (0x8D, 0xA8, 0xCC),
    "red berry": (0x8E, 0x00, 0x00),
    "rope": (0x8E, 0x4D, 0x1E),
    "opium": (0x8E, 0x6F, 0x70),
    "domino": (0x8E, 0x77, 0x5E),
    "mamba": (0x8E, 0x81, 0x90),
    "nepal": (0x8E, 0xAB, 0xC1),
    "pohutukawa": (0x8F, 0x02, 0x1C),
    "el salva": (0x8F, 0x3E, 0x33),
    "korma": (0x8F, 0x4B, 0x0E),
    "squirrel": (0x8F, 0x81, 0x76),
    "vista blue": (0x8F, 0xD6, 0xB4),
    "burgundy": (0x90, 0x00, 0x20),
    "old brick": (0x90, 0x1E, 0x1E),
    "hemp": (0x90, 0x78, 0x74),
    "almond frost": (0x90, 0x7B, 0x71),
    "sycamore": (0x90, 0x8D, 0x39),
    "sangria": (0x92, 0x00, 0x0A),
    "cumin": (0x92, 0x43, 0x21),
    "beaver": (0x92, 0x6F, 0x5B),
    "stonewall": (0x92, 0x85, 0x73),
    "venus": (0x92, 0x85, 0x90),
    "medium purple": (0x93, 0x70, 0xDB),
    "cornflower": (0x93, 0xCC, 0xEA),
    "algae green": (0x93, 0xDF, 0xB8),
    "copper rust": (0x94, 0x47, 0x47),
    "arrowtown": (0x94, 0x87, 0x71),
    "scarlett": (0x95, 0x00, 0x15),
    "strikemaster": (0x95, 0x63, 0x87),
    "mountain mist": (0x95, 0x93, 0x96),
    "carmine": (0x96, 0x00, 0x18),
    "brown": (0x96, 0x4B, 0x00),
    "leather": (0x96, 0x70, 0x59),
    "purple mountain's majesty": (0x96, 0x78, 0xB6),
    "lavender purple": (0x96, 0x7B, 0xB6),
    "pewter": (0x96, 0xA8, 0xA1),
    "summer green": (0x96, 0xBB, 0xAB),
    "au chico": (0x97, 0x60, 0x5D),
    "wisteria": (0x97, 0x71, 0xB5),
    "atlantis": (0x97, 0xCD, 0x2D),
    "vin rouge": (0x98, 0x3D, 0x61),
    "lilac bush": (0x98, 0x74, 0xD3),
    "bazaar": (0x98, 0x77, 0x7B),
    "hacienda": (0x98, 0x81, 0x1B),
    "pale oyster": (0x98, 0x8D, 0x77),
    "mint green": (0x98, 0xFF, 0x98),
    "fresh eggplant": (0x99, 0x00, 0x66),
    "violet eggplant": (0x99, 0x11, 0x99),
    "tamarillo": (0x99, 0x16, 0x13),
    "totem pole": (0x99, 0x1B, 0x07),
    "copper rose": (0x99, 0x66, 0x66),
    "amethyst": (0x99, 0x66, 0xCC),
    "mountbatten pink": (0x99, 0x7A, 0x8D),
    "blue bell": (0x99, 0x99, 0xCC),
    "prairie sand": (0x9A, 0x38, 0x20),
    "toast": (0x9A, 0x6E, 0x61),
    "gurkha": (0x9A, 0x95, 0x77),
    "olivine": (0x9A, 0xB9, 0x73),
    "shadow green": (0x9A, 0xC2, 0xB8),
    "oregon": (0x9B, 0x47, 0x03),
    "lemon grass": (0x9B, 0x9E, 0x8F),
    "stiletto": (0x9C, 0x33, 0x36),
    "hawaiian tan": (0x9D, 0x56, 0x16),
    "gull gray": (0x9D, 0xAC, 0xB7),
    "pistachio": (0x9D, 0xC2, 0x09),
    "granny smith apple": (0x9D, 0xE0, 0x93),
    "anakiwa": (0x9D, 0xE5, 0xFF),
    "chelsea gem": (0x9E, 0x53, 0x02),
    "sepia skin": (0x9E, 0x5B, 0x40),
    "sage": (0x9E, 0xA5, 0x87),
    "citron": (0x9E, 0xA9, 0x1F),
    "rock blue": (0x9E, 0xB1, 0xCD),
    "morning glory": (0x9E, 0xDE, 0xE0),
    "cognac": (0x9F, 0x38, 0x1D),
    "reef gold": (0x9F, 0x82, 0x1C),
    "star dust": (0x9F, 0x9F, 0x9C),
    "santas gray": (0x9F, 0xA0, 0xB1),
    "sinbad": (0x9F, 0xD7, 0xD3),
    "feijoa": (0x9F, 0xDD, 0x8C),
    "tabasco": (0xA0, 0x27, 0x12),
    "buttered rum": (0xA1, 0x75, 0x0D),
    "hit gray": (0xA1, 0xAD, 0xB5),
    "citrus": (0xA1, 0xC5, 0x0A),
    "aqua island": (0xA1, 0xDA, 0xD7),
    "water leaf": (0xA1, 0xE9, 0xDE),
    "flirt": (0xA2, 0x00, 0x6D),
    "rouge": (0xA2, 0x3B, 0x6C),
    "cape palliser": (0xA2, 0x66, 0x45),
    "gray chateau": (0xA2, 0xAA, 0xB3),
    "edward": (0xA2, 0xAE, 0xAB),
    "pharlap": (0xA3, 0x80, 0x7B),
    "amethyst smoke": (0xA3, 0x97, 0xB4),
    "blizzard blue": (0xA3, 0xE3, 0xED),
    "delta": (0xA4, 0xA4, 0x9D),
    "wistful": (0xA4, 0xA6, 0xD3),
    "green smoke": (0xA4, 0xAF, 0x6E),
    "jazzberry jam": (0xA5, 0x0B, 0x5E),
    "zorba": (0xA5, 0x9B, 0x91),
    "bahia": (0xA5, 0xCB, 0x0C),
    "roof terracotta": (0xA6, 0x2F, 0x20),
    "paarl": (0xA6, 0x55, 0x29),
    "barley corn": (0xA6, 0x8B, 0x5B),
    "donkey brown": (0xA6, 0x92, 0x79),
    "dawn": (0xA6, 0xA2, 0x9A),
    "mexican red": (0xA7, 0x25, 0x25),
    "luxor gold": (0xA7, 0x88, 0x2C),
    "rich gold": (0xA8, 0x53, 0x07),
    "reno sand": (0xA8, 0x65, 0x15),
    "coral tree": (0xA8, 0x6B, 0x6B),
    "dusty gray": (0xA8, 0x98, 0x9B),
    "dull lavender": (0xA8, 0x99, 0xE6),
    "tallow": (0xA8, 0xA5, 0x89),
    "bud": (0xA8, 0xAE, 0x9C),
    "locust": (0xA8, 0xAF, 0x8E),
    "norway": (0xA8, 0xBD, 0x9F),
    "chinook": (0xA8, 0xE3, 0xBD),
    "gray olive": (0xA9, 0xA4, 0x91),
    "aluminium": (0xA9, 0xAC, 0xB6),
    "cadet blue": (0xA9, 0xB2, 0xC3),
    "schist": (0xA9, 0xB4, 0x97),
    "tower gray": (0xA9, 0xBD, 0xBF),
    "perano": (0xA9, 0xBE, 0xF2),
    "opal": (0xA9, 0xC6, 0xC2),
    "night shadz": (0xAA, 0x37, 0x5A),
    "fire": (0xAA, 0x42, 0x03),
    "muesli": (0xAA, 0x8B, 0x5B),
    "sandal": (0xAA, 0x8D, 0x6F),
    "shady lady": (0xAA, 0xA5, 0xA9),
    "logan": (0xAA, 0xA9, 0xCD),
    "spun pearl": (0xAA, 0xAB, 0xB7),
    "regent st blue": (0xAA, 0xD6, 0xE6),
    "magic mint": (0xAA, 0xF0, 0xD1),
    "lipstick": (0xAB, 0x05, 0x63),
    "royal heath": (0xAB, 0x34, 0x72),
    "sandrift": (0xAB, 0x91, 0x7A),
    "cold purple": (0xAB, 0xA0, 0xD9),
    "bronco": (0xAB, 0xA1, 0x96),
    "limed oak": (0xAC, 0x8A, 0x56),
    "east side": (0xAC, 0x91, 0xCE),
    "lemon ginger": (0xAC, 0x9E, 0x22),
    "napa": (0xAC, 0xA4, 0x94),
    "hillary": (0xAC, 0xA5, 0x86),
    "cloudy": (0xAC, 0xA5, 0x9F),
    "silver chalice": (0xAC, 0xAC, 0xAC),
    "swamp green": (0xAC, 0xB7, 0x8E),
    "spring rain": (0xAC, 0xCB, 0xB1),
    "conifer": (0xAC, 0xDD, 0x4D),
    "celadon": (0xAC, 0xE1, 0xAF),
    "mandalay": (0xAD, 0x78, 0x1B),
    "casper": (0xAD, 0xBE, 0xD1),
    "moss green": (0xAD, 0xDF, 0xAD),
    "padua": (0xAD, 0xE6, 0xC4),
    "green yellow": (0xAD, 0xFF, 0x2F),
    "hippie pink": (0xAE, 0x45, 0x60),
    "desert": (0xAE, 0x60, 0x20),
    "bouquet": (0xAE, 0x80, 0x9E),
    "medium carmine": (0xAF, 0x40, 0x35),
    "apple blossom": (0xAF, 0x4D, 0x43),
    "brown rust": (0xAF, 0x59, 0x3E),
    "driftwood": (0xAF, 0x87, 0x51),
    "alpine": (0xAF, 0x8F, 0x2C),
    "lucky": (0xAF, 0x9F, 0x1C),
    "martini": (0xAF, 0xA0, 0x9E),
    "bombay": (0xAF, 0xB1, 0xB8),
    "pigeon post": (0xAF, 0xBD, 0xD9),
    "cadillac": (0xB0, 0x4C, 0x6A),
    "matrix": (0xB0, 0x5D, 0x54),
    "tapestry": (0xB0, 0x5E, 0x81),
    "mai tai": (0xB0, 0x66, 0x08),
    "del rio": (0xB0, 0x9A, 0x95),
    "powder blue": (0xB0, 0xE0, 0xE6),
    "inch worm": (0xB0, 0xE3, 0x13),
    "bright red": (0xB1, 0x00, 0x00),
    "vesuvius": (0xB1, 0x4A, 0x0B),
    "pumpkin skin": (0xB1, 0x61, 0x0B),
    "santa fe": (0xB1, 0x6D, 0x52),
    "teak": (0xB1, 0x94, 0x61),
    "fringy flower": (0xB1, 0xE2, 0xC1),
    "ice cold": (0xB1, 0xF4, 0xE7),
    "shiraz": (0xB2, 0x09, 0x31),
    "biloba flower": (0xB2, 0xA1, 0xEA),
    "tall poppy": (0xB3, 0x2D, 0x29),
    "fiery orange": (0xB3, 0x52, 0x13),
    "hot toddy": (0xB3, 0x80, 0x07),
    "taupe gray": (0xB3, 0xAF, 0x95),
    "la rioja": (0xB3, 0xC1, 0x10),
    "well read": (0xB4, 0x33, 0x32),
    "blush": (0xB4, 0x46, 0x68),
    "jungle mist": (0xB4, 0xCF, 0xD3),
    "turkish rose": (0xB5, 0x72, 0x81),
    "lavender": (0xB5, 0x7E, 0xDC),
    "mongoose": (0xB5, 0xA2, 0x7F),
    "olive green": (0xB5, 0xB3, 0x5C),
    "jet stream": (0xB5, 0xD2, 0xCE),
    "cruise": (0xB5, 0xEC, 0xDF),
    "hibiscus": (0xB6, 0x31, 0x6C),
    "thatch": (0xB6, 0x9D, 0x98),
    "heathered gray": (0xB6, 0xB0, 0x95),
    "eagle": (0xB6, 0xBA, 0xA4),
    "spindle": (0xB6, 0xD1, 0xEA),
    "gum leaf": (0xB6, 0xD3, 0xBF),
    "rust": (0xB7, 0x41, 0x0E),
    "muddy waters": (0xB7, 0x8E, 0x5C),
    "sahara": (0xB7, 0xA2, 0x14),
    "husk": (0xB7, 0xA4, 0x58),
    "nobel": (0xB7, 0xB1, 0xB1),
    "heather": (0xB7, 0xC3, 0xD0),
    "madang": (0xB7, 0xF0, 0xBE),
    "milano red": (0xB8, 0x11, 0x04),
    "copper": (0xB8, 0x73, 0x33),
    "gimblet": (0xB8, 0xB5, 0x6A),
    "green spring": (0xB8, 0xC1, 0xB1),
    "celery": (0xB8, 0xC2, 0x5D),
    "sail": (0xB8, 0xE0, 0xF9),
    "chestnut": (0xB9, 0x4E, 0x48),
    "crail": (0xB9, 0x51, 0x40),
    "marigold": (0xB9, 0x8D, 0x28),
    "wild willow": (0xB9, 0xC4, 0x6A),
    "rainee": (0xB9, 0xC8, 0xAC),
    "guardsman red": (0xBA, 0x01, 0x01),
    "rock spray": (0xBA, 0x45, 0x0C),
    "bourbon": (0xBA, 0x6F, 0x1E),
    "pirate gold": (0xBA, 0x7F, 0x03),
    "nomad": (0xBA, 0xB1, 0xA2),
    "submarine": (0xBA, 0xC7, 0xC9),
    "charlotte": (0xBA, 0xEE, 0xF9),
    "medium red violet": (0xBB, 0x33, 0x85),
    "brandy rose": (0xBB, 0x89, 0x83),
    "rio grande": (0xBB, 0xD0, 0x09),
    "surf": (0xBB, 0xD7, 0xC1),
    "powder ash": (0xBC, 0xC9, 0xC2),
    "tuscany": (0xBD, 0x5E, 0x2E),
    "quicksand": (0xBD, 0x97, 0x8E),
    "silk": (0xBD, 0xB1, 0xA8),
    "malta": (0xBD, 0xB2, 0xA1),
    "chatelle": (0xBD, 0xB3, 0xC7),
    "lavender gray": (0xBD, 0xBB, 0xD7),
    "french gray": (0xBD, 0xBD, 0xC6),
    "clay ash": (0xBD, 0xC8, 0xB3),
    "loblolly": (0xBD, 0xC9, 0xCE),
    "french pass": (0xBD, 0xED, 0xFD),
    "london hue": (0xBE, 0xA6, 0xC3),
    "pink swan": (0xBE, 0xB5, 0xB7),
    "fuego": (0xBE, 0xDE, 0x0D),
    "rose of sharon": (0xBF, 0x55, 0x00),
    "tide": (0xBF, 0xB8, 0xB0),
    "blue haze": (0xBF, 0xBE, 0xD8),
    "silver sand": (0xBF, 0xC1, 0xC2),
    "key lime pie": (0xBF, 0xC9, 0x21),
    "ziggurat": (0xBF, 0xDB, 0xE2),
    "lime": (0xBF, 0xFF, 0x00),
    "thunderbird": (0xC0, 0x2B, 0x18),
    "mojo": (0xC0, 0x47, 0x37),
    "old rose": (0xC0, 0x80, 0x81),
    "silver": (0xC0, 0xC0, 0xC0),
    "pale leaf": (0xC0, 0xD3, 0xB9),
    "pixie green": (0xC0, 0xD8, 0xB6),
    "tia maria": (0xC1, 0x44, 0x0E),
    "fuchsia pink": (0xC1, 0x54, 0xC1),
    "buddha gold": (0xC1, 0xA0, 0x04),
    "bison hide": (0xC1, 0xB7, 0xA4),
    "tea": (0xC1, 0xBA, 0xB0),
    "gray suit": (0xC1, 0xBE, 0xCD),
    "sprout": (0xC1, 0xD7, 0xB0),
    "sulu": (0xC1, 0xF0, 0x7C),
    "indochine": (0xC2, 0x6B, 0x03),
    "twine": (0xC2, 0x95, 0x5D),
    "cotton seed": (0xC2, 0xBD, 0xB6),
    "pumice": (0xC2, 0xCA, 0xC4),
    "jagged ice": (0xC2, 0xE8, 0xE5),
    "maroon flush": (0xC3, 0x21, 0x48),
    "indian khaki": (0xC3, 0xB0, 0x91),
    "pale slate": (0xC3, 0xBF, 0xC1),
    "gray nickel": (0xC3, 0xC3, 0xBD),
    "periwinkle gray": (0xC3, 0xCD, 0xE6),
    "tiara": (0xC3, 0xD1, 0xD1),
    "tropical blue": (0xC3, 0xDD, 0xF9),
    "cardinal": (0xC4, 0x1E, 0x3A),
    "fuzzy wuzzy brown": (0xC4, 0x56, 0x55),
    "orange roughy": (0xC4, 0x57, 0x19),
    "mist gray": (0xC4, 0xC4, 0xBC),
    "coriander": (0xC4, 0xD0, 0xB0),
    "mint tulip": (0xC4, 0xF4, 0xEB),
    "mulberry": (0xC5, 0x4B, 0x8C),
    "nugget": (0xC5, 0x99, 0x22),
    "tussock": (0xC5, 0x99, 0x4B),
    "sea mist": (0xC5, 0xDB, 0xCA),
    "yellow green": (0xC5, 0xE1, 0x7A),
    "brick red": (0xC6, 0x2D, 0x42),
    "contessa": (0xC6, 0x72, 0x6B),
    "oriental pink": (0xC6, 0x91, 0x91),
    "roti": (0xC6, 0xA8, 0x4B),
    "ash": (0xC6, 0xC3, 0xB5),
    "kangaroo": (0xC6, 0xC8, 0xBD),
    "las palmas": (0xC6, 0xE6, 0x10),
    "monza": (0xC7, 0x03, 0x1E),
    "red violet": (0xC7, 0x15, 0x85),
    "coral reef": (0xC7, 0xBC, 0xA2),
    "melrose": (0xC7, 0xC1, 0xFF),
    "cloud": (0xC7, 0xC4, 0xBF),
    "ghost": (0xC7, 0xC9, 0xD5),
    "pine glade": (0xC7, 0xCD, 0x90),
    "botticelli": (0xC7, 0xDD, 0xE5),
    "antique brass": (0xC8, 0x8A, 0x65),
    "lilac": (0xC8, 0xA2, 0xC8),
    "hokey pokey": (0xC8, 0xA5, 0x28),
    "lily": (0xC8, 0xAA, 0xBF),
    "laser": (0xC8, 0xB5, 0x68),
    "edgewater": (0xC8, 0xE3, 0xD7),
    "piper": (0xC9, 0x63, 0x23),
    "pizza": (0xC9, 0x94, 0x15),
    "light wisteria": (0xC9, 0xA0, 0xDC),
    "rodeo dust": (0xC9, 0xB2, 0x9B),
    "sundance": (0xC9, 0xB3, 0x5B),
    "earls green": (0xC9, 0xB9, 0x3B),
    "silver rust": (0xC9, 0xC0, 0xBB),
    "conch": (0xC9, 0xD9, 0xD2),
    "reef": (0xC9, 0xFF, 0xA2),
    "aero blue": (0xC9, 0xFF, 0xE5),
    "flush mahogany": (0xCA, 0x34, 0x35),
    "turmeric": (0xCA, 0xBB, 0x48),
    "paris white": (0xCA, 0xDC, 0xD4),
    "bitter lemon": (0xCA, 0xE0, 0x0D),
    "skeptic": (0xCA, 0xE6, 0xDA),
    "viola": (0xCB, 0x8F, 0xA9),
    "foggy gray": (0xCB, 0xCA, 0xB6),
    "green mist": (0xCB, 0xD3, 0xB0),
    "nebula": (0xCB, 0xDB, 0xD6),
    "persian red": (0xCC, 0x33, 0x33),
    "burnt orange": (0xCC, 0x55, 0x00),
    "ochre": (0xCC, 0x77, 0x22),
    "puce": (0xCC, 0x88, 0x99),
    "thistle green": (0xCC, 0xCA, 0xA8),
    "periwinkle": (0xCC, 0xCC, 0xFF),
    "electric lime": (0xCC, 0xFF, 0x00),
    "tenn": (0xCD, 0x57, 0x00),
    "chestnut rose": (0xCD, 0x5C, 0x5C),
    "brandy punch": (0xCD, 0x84, 0x29),
    "onahau": (0xCD, 0xF4, 0xFF),
    "sorrell brown": (0xCE, 0xB9, 0x8F),
    "cold turkey": (0xCE, 0xBA, 0xBA),
    "yuma": (0xCE, 0xC2, 0x91),
    "chino": (0xCE, 0xC7, 0xA7),
    "eunry": (0xCF, 0xA3, 0x9D),
    "old gold": (0xCF, 0xB5, 0x3B),
    "tasman": (0xCF, 0xDC, 0xCF),
    "surf crest": (0xCF, 0xE5, 0xD2),
    "humming bird": (0xCF, 0xF9, 0xF3),
    "scandal": (0xCF, 0xFA, 0xF4),
    "red stage": (0xD0, 0x5F, 0x04),
    "hopbush": (0xD0, 0x6D, 0xA1),
    "meteor": (0xD0, 0x7D, 0x12),
    "perfume": (0xD0, 0xBE, 0xF8),
    "prelude": (0xD0, 0xC0, 0xE5),
    "tea green": (0xD0, 0xF0, 0xC0),
    "geebung": (0xD1, 0x8F, 0x1B),
    "vanilla": (0xD1, 0xBE, 0xA8),
    "soft amber": (0xD1, 0xC6, 0xB4),
    "celeste": (0xD1, 0xD2, 0xCA),
    "mischka": (0xD1, 0xD2, 0xDD),
    "pear": (0xD1, 0xE2, 0x31),
    "hot cinnamon": (0xD2, 0x69, 0x1E),
    "raw sienna": (0xD2, 0x7D, 0x46),
    "careys pink": (0xD2, 0x9E, 0xAA),
    "tan": (0xD2, 0xB4, 0x8C),
    "deco": (0xD2, 0xDA, 0x97),
    "blue romance": (0xD2, 0xF6, 0xDE),
    "gossip": (0xD2, 0xF8, 0xB0),
    "sisal": (0xD3, 0xCB, 0xBA),
    "swirl": (0xD3, 0xCD, 0xC5),
    "charm": (0xD4, 0x74, 0x94),
    "clam shell": (0xD4, 0xB6, 0xAF),
    "straw": (0xD4, 0xBF, 0x8D),
    "akaroa": (0xD4, 0xC4, 0xA8),
    "bird flower": (0xD4, 0xCD, 0x16),
    "iron": (0xD4, 0xD7, 0xD9),
    "geyser": (0xD4, 0xDF, 0xE2),
    "hawkes blue": (0xD4, 0xE2, 0xFC),
    "grenadier": (0xD5, 0x46, 0x00),
    "can can": (0xD5, 0x91, 0xA4),
    "whiskey": (0xD5, 0x9A, 0x6F),
    "winter hazel": (0xD5, 0xD1, 0x95),
    "granny apple": (0xD5, 0xF6, 0xE3),
    "my pink": (0xD6, 0x91, 0x88),
    "tacha": (0xD6, 0xC5, 0x62),
    "moon raker": (0xD6, 0xCE, 0xF6),
    "quill gray": (0xD6, 0xD6, 0xD1),
    "snowy mint": (0xD6, 0xFF, 0xDB),
    "new york pink": (0xD7, 0x83, 0x7F),
    "pavlova": (0xD7, 0xC4, 0x98),
    "fog": (0xD7, 0xD0, 0xFF),
    "valencia": (0xD8, 0x44, 0x37),
    "japonica": (0xD8, 0x7C, 0x63),
    "thistle": (0xD8, 0xBF, 0xD8),
    "maverick": (0xD8, 0xC2, 0xD5),
    "foam": (0xD8, 0xFC, 0xFA),
    "cabaret": (0xD9, 0x49, 0x72),
    "burning sand": (0xD9, 0x93, 0x76),
    "cameo": (0xD9, 0xB9, 0x9B),
    "timberwolf": (0xD9, 0xD6, 0xCF),
    "tana": (0xD9, 0xDC, 0xC1),
    "link water": (0xD9, 0xE4, 0xF5),
    "mabel": (0xD9, 0xF7, 0xFF),
    "cerise": (0xDA, 0x32, 0x87),
    "flame pea": (0xDA, 0x5B, 0x38),
    "bamboo": (0xDA, 0x63, 0x04),
    "red damask": (0xDA, 0x6A, 0x41),
    "orchid": (0xDA, 0x70, 0xD6),
    "copperfield": (0xDA, 0x8A, 0x67),
    "golden grass": (0xDA, 0xA5, 0x20),
    "zanah": (0xDA, 0xEC, 0xD6),
    "iceberg": (0xDA, 0xF4, 0xF0),
    "oyster bay": (0xDA, 0xFA, 0xFF),
    "cranberry": (0xDB, 0x50, 0x79),
    "petite orchid": (0xDB, 0x96, 0x90),
    "di serria": (0xDB, 0x99, 0x5E),
    "alto": (0xDB, 0xDB, 0xDB),
    "frosted mint": (0xDB, 0xFF, 0xF8),
    "crimson": (0xDC, 0x14, 0x3C),
    "punch": (0xDC, 0x43, 0x33),
    "galliano": (0xDC, 0xB2, 0x0C),
    "blossom": (0xDC, 0xB4, 0xBC),
    "wattle": (0xDC, 0xD7, 0x47),
    "westar": (0xDC, 0xD9, 0xD2),
    "moon mist": (0xDC, 0xDD, 0xCC),
    "caper": (0xDC, 0xED, 0xB4),
    "swans down": (0xDC, 0xF0, 0xEA),
    "swiss coffee": (0xDD, 0xD6, 0xD5),
    "white ice": (0xDD, 0xF9, 0xF1),
    "cerise red": (0xDE, 0x31, 0x63),
    "roman": (0xDE, 0x63, 0x60),
    "tumbleweed": (0xDE, 0xA6, 0x81),
    "gold tips": (0xDE, 0xBA, 0x13),
    "brandy": (0xDE, 0xC1, 0x96),
    "wafer": (0xDE, 0xCB, 0xC6),
    "sapling": (0xDE, 0xD4, 0xA4),
    "barberry": (0xDE, 0xD7, 0x17),
    "beryl green": (0xDE, 0xE5, 0xC0),
    "pattens blue": (0xDE, 0xF5, 0xFF),
    "heliotrope": (0xDF, 0x73, 0xFF),
    "apache": (0xDF, 0xBE, 0x6F),
    "chenin": (0xDF, 0xCD, 0x6F),
    "lola": (0xDF, 0xCF, 0xDB),
    "willow brook": (0xDF, 0xEC, 0xDA),
    "chartreuse yellow": (0xDF, 0xFF, 0x00),
    "mauve": (0xE0, 0xB0, 0xFF),
    "anzac": (0xE0, 0xB6, 0x46),
    "harvest gold": (0xE0, 0xB9, 0x74),
    "calico": (0xE0, 0xC0, 0x95),
    "baby blue": (0xE0, 0xFF, 0xFF),
    "sunglo": (0xE1, 0x68, 0x65),
    "equator": (0xE1, 0xBC, 0x64),
    "pink flare": (0xE1, 0xC0, 0xC8),
    "periglacial blue": (0xE1, 0xE6, 0xD6),
    "kidnapper": (0xE1, 0xEA, 0xD4),
    "tara": (0xE1, 0xF6, 0xE8),
    "mandy": (0xE2, 0x54, 0x65),
    "terracotta": (0xE2, 0x72, 0x5B),
    "golden bell": (0xE2, 0x89, 0x13),
    "shocking": (0xE2, 0x92, 0xC0),
    "dixie": (0xE2, 0x94, 0x18),
    "light orchid": (0xE2, 0x9C, 0xD2),
    "snuff": (0xE2, 0xD8, 0xED),
    "mystic": (0xE2, 0xEB, 0xED),
    "apple green": (0xE2, 0xF3, 0xEC),
    "razzmatazz": (0xE3, 0x0B, 0x5C),
    "alizarin crimson": (0xE3, 0x26, 0x36),
    "cinnabar": (0xE3, 0x42, 0x34),
    "cavern pink": (0xE3, 0xBE, 0xBE),
    "peppermint": (0xE3, 0xF5, 0xE1),
    "mindaro": (0xE3, 0xF9, 0x88),
    "deep blush": (0xE4, 0x76, 0x98),
    "gamboge": (0xE4, 0x9B, 0x0F),
    "melanie": (0xE4, 0xC2, 0xD5),
    "twilight": (0xE4, 0xCF, 0xDE),
    "bone": (0xE4, 0xD1, 0xC0),
    "sunflower": (0xE4, 0xD4, 0x22),
    "grain brown": (0xE4, 0xD5, 0xB7),
    "zombie": (0xE4, 0xD6, 0x9B),
    "frostee": (0xE4, 0xF6, 0xE7),
    "snow flurry": (0xE4, 0xFF, 0xD1),
    "amaranth": (0xE5, 0x2B, 0x50),
    "zest": (0xE5, 0x84, 0x1B),
    "dust storm": (0xE5, 0xCC, 0xC9),
    "stark white": (0xE5, 0xD7, 0xBD),
    "hampton": (0xE5, 0xD8, 0xAF),
    "bon jour": (0xE5, 0xE0, 0xE1),
    "mercury": (0xE5, 0xE5, 0xE5),
    "polar": (0xE5, 0xF9, 0xF6),
    "trinidad": (0xE6, 0x4E, 0x03),
    "gold sand": (0xE6, 0xBE, 0x8A),
    "cashmere": (0xE6, 0xBE, 0xA5),
    "double spanish white": (0xE6, 0xD7, 0xB9),
    "satin linen": (0xE6, 0xE4, 0xD4),
    "harp": (0xE6, 0xF2, 0xEA),
    "off green": (0xE6, 0xF8, 0xF3),
    "hint of green": (0xE6, 0xFF, 0xE9),
    "tranquil": (0xE6, 0xFF, 0xFF),
    "mango tango": (0xE7, 0x72, 0x00),
    "christine": (0xE7, 0x73, 0x0A),
    "tonys pink": (0xE7, 0x9F, 0x8C),
    "kobi": (0xE7, 0x9F, 0xC4),
    "rose fog": (0xE7, 0xBC, 0xB4),
    "corn": (0xE7, 0xBF, 0x05),
    "putty": (0xE7, 0xCD, 0x8C),
    "gray nurse": (0xE7, 0xEC, 0xE6),
    "lily white": (0xE7, 0xF8, 0xFF),
    "bubbles": (0xE7, 0xFE, 0xFF),
    "fire bush": (0xE8, 0x99, 0x28),
    "shilo": (0xE8, 0xB9, 0xB3),
    "pearl bush": (0xE8, 0xE0, 0xD5),
    "green white": (0xE8, 0xEB, 0xE0),
    "chrome white": (0xE8, 0xF1, 0xD4),
    "gin": (0xE8, 0xF2, 0xEB),
    "aqua squeeze": (0xE8, 0xF5, 0xF2),
    "clementine": (0xE9, 0x6E, 0x00),
    "burnt sienna": (0xE9, 0x74, 0x51),
    "tahiti gold": (0xE9, 0x7C, 0x07),
    "oyster pink": (0xE9, 0xCE, 0xCD),
    "confetti": (0xE9, 0xD7, 0x5A),
    "ebb": (0xE9, 0xE3, 0xE3),
    "ottoman": (0xE9, 0xF8, 0xED),
    "clear day": (0xE9, 0xFF, 0xFD),
    "carissma": (0xEA, 0x88, 0xA8),
    "porsche": (0xEA, 0xAE, 0x69),
    "tulip tree": (0xEA, 0xB3, 0x3B),
    "rob roy": (0xEA, 0xC6, 0x74),
    "raffia": (0xEA, 0xDA, 0xB8),
    "white rock": (0xEA, 0xE8, 0xD4),
    "panache": (0xEA, 0xF6, 0xEE),
    "solitude": (0xEA, 0xF6, 0xFF),
    "aqua spring": (0xEA, 0xF9, 0xF5),
    "dew": (0xEA, 0xFF, 0xFE),
    "apricot": (0xEB, 0x93, 0x73),
    "zinnwaldite": (0xEB, 0xC2, 0xAF),
    "fuel yellow": (0xEC, 0xA9, 0x27),
    "ronchi": (0xEC, 0xC5, 0x4E),
    "french lilac": (0xEC, 0xC7, 0xEE),
    "just right": (0xEC, 0xCD, 0xB9),
    "wild rice": (0xEC, 0xE0, 0x90),
    "fall green": (0xEC, 0xEB, 0xBD),
    "aths special": (0xEC, 0xEB, 0xCE),
    "starship": (0xEC, 0xF2, 0x45),
    "red ribbon": (0xED, 0x0A, 0x3F),
    "tango": (0xED, 0x7A, 0x1C),
    "carrot orange": (0xED, 0x91, 0x21),
    "sea pink": (0xED, 0x98, 0x9E),
    "tacao": (0xED, 0xB3, 0x81),
    "desert sand": (0xED, 0xC9, 0xAF),
    "pancho": (0xED, 0xCD, 0xAB),
    "chamois": (0xED, 0xDC, 0xB1),
    "primrose": (0xED, 0xEA, 0x99),
    "frost": (0xED, 0xF5, 0xDD),
    "aqua haze": (0xED, 0xF5, 0xF5),
    "zumthor": (0xED, 0xF6, 0xFF),
    "narvik": (0xED, 0xF9, 0xF1),
    "honeysuckle": (0xED, 0xFC, 0x84),
    "lavender magenta": (0xEE, 0x82, 0xEE),
    "beauty bush": (0xEE, 0xC1, 0xBE),
    "chalky": (0xEE, 0xD7, 0x94),
    "almond": (0xEE, 0xD9, 0xC4),
    "flax": (0xEE, 0xDC, 0x82),
    "bizarre": (0xEE, 0xDE, 0xDA),
    "double colonial white": (0xEE, 0xE3, 0xAD),
    "cararra": (0xEE, 0xEE, 0xE8),
    "manz": (0xEE, 0xEF, 0x78),
    "tahuna sands": (0xEE, 0xF0, 0xC8),
    "athens gray": (0xEE, 0xF0, 0xF3),
    "tusk": (0xEE, 0xF3, 0xC3),
    "loafer": (0xEE, 0xF4, 0xDE),
    "catskill white": (0xEE, 0xF6, 0xF7),
    "twilight blue": (0xEE, 0xFD, 0xFF),
    "jonquil": (0xEE, 0xFF, 0x9A),
    "rice flower": (0xEE, 0xFF, 0xE2),
    "jaffa": (0xEF, 0x86, 0x3F),
    "gallery": (0xEF, 0xEF, 0xEF),
    "porcelain": (0xEF, 0xF2, 0xF3),
    "mauvelous": (0xF0, 0x91, 0xA9),
    "golden dream": (0xF0, 0xD5, 0x2D),
    "golden sand": (0xF0, 0xDB, 0x7D),
    "buff": (0xF0, 0xDC, 0x82),
    "prim": (0xF0, 0xE2, 0xEC),
    "khaki": (0xF0, 0xE6, 0x8C),
    "selago": (0xF0, 0xEE, 0xFD),
    "titan white": (0xF0, 0xEE, 0xFF),
    "alice blue": (0xF0, 0xF8, 0xFF),
    "feta": (0xF0, 0xFC, 0xEA),
    "gold drop": (0xF1, 0x82, 0x00),
    "wewak": (0xF1, 0x9B, 0xAB),
    "sahara sand": (0xF1, 0xE7, 0x88),
    "parchment": (0xF1, 0xE9, 0xD2),
    "blue chalk": (0xF1, 0xE9, 0xFF),
    "mint julep": (0xF1, 0xEE, 0xC1),
    "seashell": (0xF1, 0xF1, 0xF1),
    "saltpan": (0xF1, 0xF7, 0xF2),
    "tidal": (0xF1, 0xFF, 0xAD),
    "chiffon": (0xF1, 0xFF, 0xC8),
    "flamingo": (0xF2, 0x55, 0x2A),
    "tangerine": (0xF2, 0x85, 0x00),
    "mandys pink": (0xF2, 0xC3, 0xB2),
    "concrete": (0xF2, 0xF2, 0xF2),
    "black squeeze": (0xF2, 0xFA, 0xFA),
    "pomegranate": (0xF3, 0x47, 0x23),
    "buttercup": (0xF3, 0xAD, 0x16),
    "new orleans": (0xF3, 0xD6, 0x9D),
    "vanilla ice": (0xF3, 0xD9, 0xDF),
    "sidecar": (0xF3, 0xE7, 0xBB),
    "dawn pink": (0xF3, 0xE9, 0xE5),
    "wheatfield": (0xF3, 0xED, 0xCF),
    "canary": (0xF3, 0xFB, 0x62),
    "orinoco": (0xF3, 0xFB, 0xD4),
    "carla": (0xF3, 0xFF, 0xD8),
    "hollywood cerise": (0xF4, 0x00, 0xA1),
    "sandy brown": (0xF4, 0xA4, 0x60),
    "saffron": (0xF4, 0xC4, 0x30),
    "ripe lemon": (0xF4, 0xD8, 0x1C),
    "janna": (0xF4, 0xEB, 0xD3),
    "pampas": (0xF4, 0xF2, 0xEE),
    "wild sand": (0xF4, 0xF4, 0xF4),
    "zircon": (0xF4, 0xF8, 0xFF),
    "froly": (0xF5, 0x75, 0x84),
    "cream can": (0xF5, 0xC8, 0x5C),
    "manhattan": (0xF5, 0xC9, 0x99),
    "maize": (0xF5, 0xD5, 0xA0),
    "wheat": (0xF5, 0xDE, 0xB3),
    "sandwisp": (0xF5, 0xE7, 0xA2),
    "pot pourri": (0xF5, 0xE7, 0xE2),
    "albescent white": (0xF5, 0xE9, 0xD3),
    "soft peach": (0xF5, 0xED, 0xEF),
    "ecru white": (0xF5, 0xF3, 0xE5),
    "beige": (0xF5, 0xF5, 0xDC),
    "golden fizz": (0xF5, 0xFB, 0x3D),
    "australian mint": (0xF5, 0xFF, 0xBE),
    "french rose": (0xF6, 0x4A, 0x8A),
    "brilliant rose": (0xF6, 0x53, 0xA6),
    "illusion": (0xF6, 0xA4, 0xC9),
    "merino": (0xF6, 0xF0, 0xE6),
    "black haze": (0xF6, 0xF7, 0xF7),
    "spring sun": (0xF6, 0xFF, 0xDC),
    "violet red": (0xF7, 0x46, 0x8A),
    "chilean fire": (0xF7, 0x77, 0x03),
    "persian pink": (0xF7, 0x7F, 0xBE),
    "rajah": (0xF7, 0xB6, 0x68),
    "azalea": (0xF7, 0xC8, 0xDA),
    "we peep": (0xF7, 0xDB, 0xE6),
    "quarter spanish white": (0xF7, 0xF2, 0xE1),
    "whisper": (0xF7, 0xF5, 0xFA),
    "snow drift": (0xF7, 0xFA, 0xF7),
    "casablanca": (0xF8, 0xB8, 0x53),
    "chantilly": (0xF8, 0xC3, 0xDF),
    "cherub": (0xF8, 0xD9, 0xE9),
    "marzipan": (0xF8, 0xDB, 0x9D),
    "energy yellow": (0xF8, 0xDD, 0x5C),
    "givry": (0xF8, 0xE4, 0xBF),
    "white linen": (0xF8, 0xF0, 0xE8),
    "magnolia": (0xF8, 0xF4, 0xFF),
    "spring wood": (0xF8, 0xF6, 0xF1),
    "coconut cream": (0xF8, 0xF7, 0xDC),
    "white lilac": (0xF8, 0xF7, 0xFC),
    "desert storm": (0xF8, 0xF8, 0xF7),
    "texas": (0xF8, 0xF9, 0x9C),
    "corn field": (0xF8, 0xFA, 0xCD),
    "mimosa": (0xF8, 0xFD, 0xD3),
    "carnation": (0xF9, 0x5A, 0x61),
    "saffron mango": (0xF9, 0xBF, 0x58),
    "carousel pink": (0xF9, 0xE0, 0xED),
    "dairy cream": (0xF9, 0xE4, 0xBC),
    "portica": (0xF9, 0xE6, 0x63),
    "amour": (0xF9, 0xEA, 0xF3),
    "rum swizzle": (0xF9, 0xF8, 0xE4),
    "dolly": (0xF9, 0xFF, 0x8B),
    "sugar cane": (0xF9, 0xFF, 0xF6),
    "ecstasy": (0xFA, 0x78, 0x14),
    "tan hide": (0xFA, 0x9D, 0x5A),
    "corvette": (0xFA, 0xD3, 0xA2),
    "peach yellow": (0xFA, 0xDF, 0xAD),
    "turbo": (0xFA, 0xE6, 0x00),
    "astra": (0xFA, 0xEA, 0xB9),
    "champagne": (0xFA, 0xEC, 0xCC),
    "linen": (0xFA, 0xF0, 0xE6),
    "fantasy": (0xFA, 0xF3, 0xF0),
    "citrine white": (0xFA, 0xF7, 0xD6),
    "alabaster": (0xFA, 0xFA, 0xFA),
    "hint of yellow": (0xFA, 0xFD, 0xE4),
    "milan": (0xFA, 0xFF, 0xA4),
    "brink pink": (0xFB, 0x60, 0x7F),
    "geraldine": (0xFB, 0x89, 0x89),
    "lavender rose": (0xFB, 0xA0, 0xE3),
    "sea buckthorn": (0xFB, 0xA1, 0x29),
    "sun": (0xFB, 0xAC, 0x13),
    "lavender pink": (0xFB, 0xAE, 0xD2),
    "rose bud": (0xFB, 0xB2, 0xA3),
    "cupid": (0xFB, 0xBE, 0xDA),
    "classic rose": (0xFB, 0xCC, 0xE7),
    "apricot peach": (0xFB, 0xCE, 0xB1),
    "banana mania": (0xFB, 0xE7, 0xB2),
    "marigold yellow": (0xFB, 0xE8, 0x70),
    "festival": (0xFB, 0xE9, 0x6C),
    "sweet corn": (0xFB, 0xEA, 0x8C),
    "candy corn": (0xFB, 0xEC, 0x5D),
    "hint of red": (0xFB, 0xF9, 0xF9),
    "shalimar": (0xFB, 0xFF, 0xBA),
    "shocking pink": (0xFC, 0x0F, 0xC0),
    "tickle me pink": (0xFC, 0x80, 0xA5),
    "tree poppy": (0xFC, 0x9C, 0x1D),
    "lightning yellow": (0xFC, 0xC0, 0x1E),
    "goldenrod": (0xFC, 0xD6, 0x67),
    "candlelight": (0xFC, 0xD9, 0x17),
    "cherokee": (0xFC, 0xDA, 0x98),
    "double pearl lusta": (0xFC, 0xF4, 0xD0),
    "pearl lusta": (0xFC, 0xF4, 0xDC),
    "vista white": (0xFC, 0xF8, 0xF7),
    "bianca": (0xFC, 0xFB, 0xF3),
    "moon glow": (0xFC, 0xFE, 0xDA),
    "china ivory": (0xFC, 0xFF, 0xE7),
    "ceramic": (0xFC, 0xFF, 0xF9),
    "torch red": (0xFD, 0x0E, 0x35),
    "wild watermelon": (0xFD, 0x5B, 0x78),
    "crusta": (0xFD, 0x7B, 0x33),
    "sorbus": (0xFD, 0x7C, 0x07),
    "sweet pink": (0xFD, 0x9F, 0xA2),
    "light apricot": (0xFD, 0xD5, 0xB1),
    "pig pink": (0xFD, 0xD7, 0xE4),
    "cinderella": (0xFD, 0xE1, 0xDC),
    "golden glow": (0xFD, 0xE2, 0x95),
    "lemon": (0xFD, 0xE9, 0x10),
    "old lace": (0xFD, 0xF5, 0xE6),
    "half colonial white": (0xFD, 0xF6, 0xD3),
    "drover": (0xFD, 0xF7, 0xAD),
    "pale prim": (0xFD, 0xFE, 0xB8),
    "cumulus": (0xFD, 0xFF, 0xD5),
    "persian rose": (0xFE, 0x28, 0xA2),
    "sunset orange": (0xFE, 0x4C, 0x40),
    "bittersweet": (0xFE, 0x6F, 0x5E),
    "california": (0xFE, 0x9D, 0x04),
    "yellow sea": (0xFE, 0xA9, 0x04),
    "melon": (0xFE, 0xBA, 0xAD),
    "bright sun": (0xFE, 0xD3, 0x3C),
    "dandelion": (0xFE, 0xD8, 0x5D),
    "salomie": (0xFE, 0xDB, 0x8D),
    "cape honey": (0xFE, 0xE5, 0xAC),
    "remy": (0xFE, 0xEB, 0xF3),
    "oasis": (0xFE, 0xEF, 0xCE),
    "bridesmaid": (0xFE, 0xF0, 0xEC),
    "beeswax": (0xFE, 0xF2, 0xC7),
    "bleach white": (0xFE, 0xF3, 0xD8),
    "pipi": (0xFE, 0xF4, 0xCC),
    "half spanish white": (0xFE, 0xF4, 0xDB),
    "wisp pink": (0xFE, 0xF4, 0xF8),
    "provincial pink": (0xFE, 0xF5, 0xF1),
    "half dutch white": (0xFE, 0xF7, 0xDE),
    "solitaire": (0xFE, 0xF8, 0xE2),
    "white pointer": (0xFE, 0xF8, 0xFF),
    "off yellow": (0xFE, 0xF9, 0xE3),
    "orange white": (0xFE, 0xFC, 0xED),
    "red": (0xFF, 0x00, 0x00),
    "dark red": (0x64, 0x00, 0x00),
    "rose": (0xFF, 0x00, 0x7F),
    "purple pizzazz": (0xFF, 0x00, 0xCC),
    "magenta": (0xFF, 0x00, 0xFF),
    "fuchsia": (0xFF, 0x00, 0xFF),
    "dark magenta": (0xAF, 0x00, 0xAF),
    "scarlet": (0xFF, 0x24, 0x00),
    "wild strawberry": (0xFF, 0x33, 0x99),
    "razzle dazzle rose": (0xFF, 0x33, 0xCC),
    "radical red": (0xFF, 0x35, 0x5E),
    "red orange": (0xFF, 0x3F, 0x34),
    "coral red": (0xFF, 0x40, 0x40),
    "vermilion": (0xFF, 0x4D, 0x00),
    "international orange": (0xFF, 0x4F, 0x00),
    "outrageous orange": (0xFF, 0x60, 0x37),
    "blaze orange": (0xFF, 0x66, 0x00),
    "pink flamingo": (0xFF, 0x66, 0xFF),
    "orange": (0xFF, 0x68, 0x1F),
    "hot pink": (0xFF, 0x69, 0xB4),
    "persimmon": (0xFF, 0x6B, 0x53),
    "blush pink": (0xFF, 0x6F, 0xFF),
    "burning orange": (0xFF, 0x70, 0x34),
    "pumpkin": (0xFF, 0x75, 0x18),
    "flamenco": (0xFF, 0x7D, 0x07),
    "flush orange": (0xFF, 0x7F, 0x00),
    "coral": (0xFF, 0x7F, 0x50),
    "salmon": (0xFF, 0x8C, 0x69),
    "pizazz": (0xFF, 0x90, 0x00),
    "west side": (0xFF, 0x91, 0x0F),
    "pink salmon": (0xFF, 0x91, 0xA4),
    "neon carrot": (0xFF, 0x99, 0x33),
    "atomic tangerine": (0xFF, 0x99, 0x66),
    "vivid tangerine": (0xFF, 0x99, 0x80),
    "sunshade": (0xFF, 0x9E, 0x2C),
    "orange peel": (0xFF, 0xA0, 0x00),
    "mona lisa": (0xFF, 0xA1, 0x94),
    "web orange": (0xFF, 0xA5, 0x00),
    "carnation pink": (0xFF, 0xA6, 0xC9),
    "hit pink": (0xFF, 0xAB, 0x81),
    "yellow orange": (0xFF, 0xAE, 0x42),
    "cornflower lilac": (0xFF, 0xB0, 0xAC),
    "sundown": (0xFF, 0xB1, 0xB3),
    "my sin": (0xFF, 0xB3, 0x1F),
    "texas rose": (0xFF, 0xB5, 0x55),
    "cotton candy": (0xFF, 0xB7, 0xD5),
    "macaroni and cheese": (0xFF, 0xB9, 0x7B),
    "selective yellow": (0xFF, 0xBA, 0x00),
    "koromiko": (0xFF, 0xBD, 0x5F),
    "amber": (0xFF, 0xBF, 0x00),
    "wax flower": (0xFF, 0xC0, 0xA8),
    "pink": (0xFF, 0xC0, 0xCB),
    "your pink": (0xFF, 0xC3, 0xC0),
    "supernova": (0xFF, 0xC9, 0x01),
    "flesh": (0xFF, 0xCB, 0xA4),
    "sunglow": (0xFF, 0xCC, 0x33),
    "golden tainoi": (0xFF, 0xCC, 0x5C),
    "peach orange": (0xFF, 0xCC, 0x99),
    "chardonnay": (0xFF, 0xCD, 0x8C),
    "pastel pink": (0xFF, 0xD1, 0xDC),
    "romantic": (0xFF, 0xD2, 0xB7),
    "grandis": (0xFF, 0xD3, 0x8C),
    "gold": (0xFF, 0xD7, 0x00),
    "school bus yellow": (0xFF, 0xD8, 0x00),
    "cosmos": (0xFF, 0xD8, 0xD9),
    "mustard": (0xFF, 0xDB, 0x58),
    "peach schnapps": (0xFF, 0xDC, 0xD6),
    "caramel": (0xFF, 0xDD, 0xAF),
    "tuft bush": (0xFF, 0xDD, 0xCD),
    "watusi": (0xFF, 0xDD, 0xCF),
    "pink lace": (0xFF, 0xDD, 0xF4),
    "navajo white": (0xFF, 0xDE, 0xAD),
    "frangipani": (0xFF, 0xDE, 0xB3),
    "pippin": (0xFF, 0xE1, 0xDF),
    "pale rose": (0xFF, 0xE1, 0xF2),
    "negroni": (0xFF, 0xE2, 0xC5),
    "cream brulee": (0xFF, 0xE5, 0xA0),
    "peach": (0xFF, 0xE5, 0xB4),
    "tequila": (0xFF, 0xE6, 0xC7),
    "kournikova": (0xFF, 0xE7, 0x72),
    "sandy beach": (0xFF, 0xEA, 0xC8),
    "karry": (0xFF, 0xEA, 0xD4),
    "broom": (0xFF, 0xEC, 0x13),
    "colonial white": (0xFF, 0xED, 0xBC),
    "derby": (0xFF, 0xEE, 0xD8),
    "vis vis": (0xFF, 0xEF, 0xA1),
    "egg white": (0xFF, 0xEF, 0xC1),
    "papaya whip": (0xFF, 0xEF, 0xD5),
    "fair pink": (0xFF, 0xEF, 0xEC),
    "peach cream": (0xFF, 0xF0, 0xDB),
    "lavender blush": (0xFF, 0xF0, 0xF5),
    "gorse": (0xFF, 0xF1, 0x4F),
    "buttermilk": (0xFF, 0xF1, 0xB5),
    "pink lady": (0xFF, 0xF1, 0xD8),
    "forget me not": (0xFF, 0xF1, 0xEE),
    "tutu": (0xFF, 0xF1, 0xF9),
    "picasso": (0xFF, 0xF3, 0x9D),
    "chardon": (0xFF, 0xF3, 0xF1),
    "paris daisy": (0xFF, 0xF4, 0x6E),
    "barley white": (0xFF, 0xF4, 0xCE),
    "egg sour": (0xFF, 0xF4, 0xDD),
    "sazerac": (0xFF, 0xF4, 0xE0),
    "serenade": (0xFF, 0xF4, 0xE8),
    "chablis": (0xFF, 0xF4, 0xF3),
    "seashell peach": (0xFF, 0xF5, 0xEE),
    "sauvignon": (0xFF, 0xF5, 0xF3),
    "milk punch": (0xFF, 0xF6, 0xD4),
    "varden": (0xFF, 0xF6, 0xDF),
    "rose white": (0xFF, 0xF6, 0xF5),
    "baja white": (0xFF, 0xF8, 0xD1),
    "gin fizz": (0xFF, 0xF9, 0xE2),
    "early dawn": (0xFF, 0xF9, 0xE6),
    "lemon chiffon": (0xFF, 0xFA, 0xCD),
    "bridal heath": (0xFF, 0xFA, 0xF4),
    "scotch mist": (0xFF, 0xFB, 0xDC),
    "soapstone": (0xFF, 0xFB, 0xF9),
    "witch haze": (0xFF, 0xFC, 0x99),
    "buttery white": (0xFF, 0xFC, 0xEA),
    "island spice": (0xFF, 0xFC, 0xEE),
    "cream": (0xFF, 0xFD, 0xD0),
    "chilean heath": (0xFF, 0xFD, 0xE6),
    "travertine": (0xFF, 0xFD, 0xE8),
    "orchid white": (0xFF, 0xFD, 0xF3),
    "quarter pearl lusta": (0xFF, 0xFD, 0xF4),
    "half and half": (0xFF, 0xFE, 0xE1),
    "apricot white": (0xFF, 0xFE, 0xEC),
    "rice cake": (0xFF, 0xFE, 0xF0),
    "black white": (0xFF, 0xFE, 0xF6),
    "romance": (0xFF, 0xFE, 0xFD),
    "yellow": (0xFF, 0xFF, 0x00),
    "laser lemon": (0xFF, 0xFF, 0x66),
    "pale canary": (0xFF, 0xFF, 0x99),
    "portafino": (0xFF, 0xFF, 0xB4),
    "ivory": (0xFF, 0xFF, 0xF0),
    "white": (0xFF, 0xFF, 0xFF),
}


def clear() -> str:
    return ""


def clear_screen() -> str:
    return ""


def reset() -> str:
    return ""


def normal() -> str:
    return ""


def bold() -> str:
    return ""


def italic() -> str:
    return ""


def italics() -> str:
    return italic()


def underline() -> str:
    return ""


def strikethrough() -> str:
    return ""


def strike_through() -> str:
    return strikethrough()


def is_16color(num: int) -> bool:
    return num == 255 or num == 128


def is_216color(num: int) -> bool:
    return num in set([0, 95, 135, 175, 223, 255])


def _simple_color_number(red: int, green: int, blue: int) -> int:
    r = red > 0
    g = green > 0
    b = blue > 0
    return b << 2 | g << 1 | r


def fg_16color(red: int, green: int, blue: int) -> str:
    code = _simple_color_number(red, green, blue) + 30
    bright_count = 0
    if red > 128:
        bright_count += 1
    if green > 128:
        bright_count += 1
    if blue > 128:
        bright_count += 1
    if bright_count > 1:
        code += 60
    return f"[{code}m"


def bg_16color(red: int, green: int, blue: int) -> str:
    code = _simple_color_number(red, green, blue) + 40
    bright_count = 0
    if red > 128:
        bright_count += 1
    if green > 128:
        bright_count += 1
    if blue > 128:
        bright_count += 1
    if bright_count > 1:
        code += 60
    return f"[{code}m"


def _pixel_to_216color(n: int) -> int:
    if n >= 255:
        return 5
    if n >= 233:
        return 4
    if n >= 175:
        return 3
    if n >= 135:
        return 2
    if n >= 95:
        return 1
    return 0


def fg_216color(red: int, green: int, blue: int) -> str:
    r = _pixel_to_216color(red)
    g = _pixel_to_216color(green)
    b = _pixel_to_216color(blue)
    code = 16 + r * 36 + g * 6 + b
    return f"[38;5;{code}m"


def bg_216color(red: int, green: int, blue: int) -> str:
    r = _pixel_to_216color(red)
    g = _pixel_to_216color(green)
    b = _pixel_to_216color(blue)
    code = 16 + r * 36 + g * 6 + b
    return f"[48;5;{code}m"


def fg_24bit(red: int, green: int, blue: int) -> str:
    return f"[38;2;{red};{green};{blue}m"


def bg_24bit(red: int, green: int, blue: int) -> str:
    return f"[48;2;{red};{green};{blue}m"


def _find_color_by_name(name: str) -> Tuple[int, int, int]:
    rgb = COLOR_NAMES_TO_RGB.get(name.lower(), None)
    if rgb is None:
        name = guess_name(name)
        rgb = COLOR_NAMES_TO_RGB.get(name.lower(), None)
        assert rgb is not None
    return rgb


@logging_utils.squelch_repeated_log_messages(1)
def fg(
    name: Optional[str] = "",
    red: Optional[int] = None,
    green: Optional[int] = None,
    blue: Optional[int] = None,
    *,
    force_16color: bool = False,
    force_216color: bool = False,
) -> str:
    """Return the ANSI escape sequence to change the foreground color
    being printed.  Target colors may be indicated by name or R/G/B.
    Result will use the 16 or 216 color scheme if force_16color or
    force_216color are passed (respectively).  Otherwise the code will
    do what it thinks best.

    >>> import string_utils as su
    >>> su.to_base64(fg('blue'))
    b'G1szODs1OzIxbQ==\\n'

    """
    import string_utils

    if name is not None and name == 'reset':
        return '\033[39m'

    if name is not None and string_utils.is_full_string(name):
        rgb = _find_color_by_name(name)
        return fg(
            None,
            rgb[0],
            rgb[1],
            rgb[2],
            force_16color=force_16color,
            force_216color=force_216color,
        )

    if red is None:
        red = 0
    if green is None:
        green = 0
    if blue is None:
        blue = 0
    if (
        is_16color(red) and is_16color(green) and is_16color(blue)
    ) or force_16color:
        logger.debug("Using 16-color strategy")
        return fg_16color(red, green, blue)
    if (
        is_216color(red) and is_216color(green) and is_216color(blue)
    ) or force_216color:
        logger.debug("Using 216-color strategy")
        return fg_216color(red, green, blue)
    logger.debug("Using 24-bit color strategy")
    return fg_24bit(red, green, blue)


def _rgb_to_yiq(rgb: Tuple[int, int, int]) -> int:
    return (rgb[0] * 299 + rgb[1] * 587 + rgb[2] * 114) // 1000


def _contrast(rgb: Tuple[int, int, int]) -> Tuple[int, int, int]:
    if _rgb_to_yiq(rgb) < 128:
        return (0xFF, 0xFF, 0xFF)
    return (0, 0, 0)


def pick_contrasting_color(
    name: Optional[str] = "",
    red: Optional[int] = None,
    green: Optional[int] = None,
    blue: Optional[int] = None,
) -> Tuple[int, int, int]:
    """This method will return a red, green, blue tuple representing a
    contrasting color given the red, green, blue of a background
    color or a color name of the background color.

    >>> pick_contrasting_color(None, 20, 20, 20)
    (255, 255, 255)

    >>> pick_contrasting_color("white")
    (0, 0, 0)

    """
    import string_utils

    if name is not None and string_utils.is_full_string(name):
        rgb = _find_color_by_name(name)
    else:
        r = red if red is not None else 0
        g = green if green is not None else 0
        b = blue if blue is not None else 0
        rgb = (r, g, b)
    assert rgb is not None
    return _contrast(rgb)


def guess_name(name: str) -> str:
    best_guess = None
    max_ratio = None
    for possibility in COLOR_NAMES_TO_RGB:
        r = difflib.SequenceMatcher(None, name, possibility).ratio()
        if max_ratio is None or r > max_ratio:
            max_ratio = r
            best_guess = possibility
    assert best_guess is not None
    logger.debug(f"Best guess at color name is {best_guess}")
    return best_guess


def bg(
    name: Optional[str] = "",
    red: Optional[int] = None,
    green: Optional[int] = None,
    blue: Optional[int] = None,
    *,
    force_16color: bool = False,
    force_216color: bool = False,
) -> str:
    """Returns an ANSI color code for changing the current background
    color.

    >>> import string_utils as su
    >>> su.to_base64(bg("red"))    # b'\x1b[48;5;196m'
    b'G1s0ODs1OzE5Nm0=\\n'

    """
    import string_utils

    if name is not None and name == 'reset':
        return '\033[49m'

    if name is not None and string_utils.is_full_string(name):
        rgb = _find_color_by_name(name)
        return bg(
            None,
            rgb[0],
            rgb[1],
            rgb[2],
            force_16color=force_16color,
            force_216color=force_216color,
        )
    if red is None:
        red = 0
    if green is None:
        green = 0
    if blue is None:
        blue = 0
    if (
        is_16color(red) and is_16color(green) and is_16color(blue)
    ) or force_16color:
        logger.debug("Using 16-color strategy")
        return bg_16color(red, green, blue)
    if (
        is_216color(red) and is_216color(green) and is_216color(blue)
    ) or force_216color:
        logger.debug("Using 216-color strategy")
        return bg_216color(red, green, blue)
    logger.debug("Using 24-bit color strategy")
    return bg_24bit(red, green, blue)


class StdoutInterceptor(io.TextIOBase):
    def __init__(self):
        self.saved_stdout: Optional[io.TextIOBase] = None
        self.buf = ''

    @abstractmethod
    def write(self, s: str):
        pass

    def __enter__(self) -> None:
        self.saved_stdout = sys.stdout
        sys.stdout = self
        return None

    def __exit__(self, *args) -> bool:
        sys.stdout = self.saved_stdout
        print(self.buf)
        return None


class ProgrammableColorizer(StdoutInterceptor):
    def __init__(
        self,
        patterns: Iterable[Tuple[re.Pattern, Callable[[Any, re.Pattern], str]]],
    ):
        super().__init__()
        self.patterns = [_ for _ in patterns]

    @overrides
    def write(self, s: str):
        for pattern in self.patterns:
            s = pattern[0].sub(pattern[1], s)
        self.buf += s


if __name__ == '__main__':

    def main() -> None:
        import doctest

        doctest.testmod()

        name = " ".join(sys.argv[1:])
        for possibility in COLOR_NAMES_TO_RGB:
            if name in possibility:
                f = fg(possibility)
                b = bg(possibility)
                _ = pick_contrasting_color(possibility)
                xf = fg(None, _[0], _[1], _[2])
                xb = bg(None, _[0], _[1], _[2])
                print(
                    f'{f}{xb}{possibility}{reset()}\t\t\t'
                    f'{b}{xf}{possibility}{reset()}'
                )

    main()