colorconv 0.1.1

color conversion library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
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
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
{
  "#4c4f56": "abbey",
  "#0048ba": "absolute zero",
  "#1b1404": "acadia",
  "#7cb0a1": "acapulco",
  "#b0bf1a": "acid green",
  "#7cb9e8": "aero",
  "#c9ffe5": "aero blue",
  "#714693": "affair",
  "#b284be": "african violet",
  "#00308f": "air force blue",
  "#72a0c1": "air superiority blue",
  "#d4c4a8": "akaroa",
  "#af002a": "alabama crimson",
  "#fafafa": "alabaster",
  "#f5e9d3": "albescent white",
  "#93dfb8": "algae green",
  "#f0f8ff": "alice blue",
  "#84de02": "alien armpit",
  "#e32636": "alizarin crimson",
  "#c46210": "alloy orange",
  "#0076a3": "allports",
  "#efdecd": "almond",
  "#907b71": "almond frost",
  "#af8f2c": "alpine",
  "#dbdbdb": "alto",
  "#a9acb6": "aluminium",
  "#e52b50": "amaranth",
  "#f19cbb": "amaranth pink",
  "#ab274f": "amaranth purple",
  "#d3212d": "amaranth red",
  "#3b7a57": "amazon",
  "#ffbf00": "amber",
  "#ff033e": "american rose",
  "#87756e": "americano",
  "#9966cc": "amethyst",
  "#a397b4": "amethyst smoke",
  "#f9eaf3": "amour",
  "#7b9f80": "amulet",
  "#9de5ff": "anakiwa",
  "#a4c639": "android green",
  "#f2f3f4": "anti flash white",
  "#cd9575": "antique brass",
  "#665d1e": "antique bronze",
  "#915c83": "antique fuchsia",
  "#841b2d": "antique ruby",
  "#faebd7": "antique white",
  "#e0b646": "anzac",
  "#008000": "ao",
  "#dfbe6f": "apache",
  "#4fa83d": "apple",
  "#af4d43": "apple blossom",
  "#8db600": "apple green",
  "#fbceb1": "apricot",
  "#fffeec": "apricot white",
  "#014b43": "aqua deep",
  "#5fa777": "aqua forest",
  "#edf5f5": "aqua haze",
  "#a1dad7": "aqua island",
  "#eaf9f5": "aqua spring",
  "#e8f5f2": "aqua squeeze",
  "#7fffd4": "aquamarine",
  "#71d9e2": "aquamarine blue",
  "#110c6c": "arapawa",
  "#d0ff14": "arctic lime",
  "#433e37": "armadillo",
  "#4b5320": "army green",
  "#948771": "arrowtown",
  "#3b444b": "arsenic",
  "#8f9779": "artichoke",
  "#e9d66b": "arylide yellow",
  "#c6c3b5": "ash",
  "#b2beb5": "ash grey",
  "#87a96b": "asparagus",
  "#130a06": "asphalt",
  "#faeab9": "astra",
  "#327da0": "astral",
  "#283a77": "astronaut",
  "#013e62": "astronaut blue",
  "#eef0f3": "athens gray",
  "#ecebce": "aths special",
  "#97cd2d": "atlantis",
  "#0a6f75": "atoll",
  "#97605d": "au chico",
  "#3b0910": "aubergine",
  "#a52a2a": "auburn",
  "#fdee00": "aureolin",
  "#6e7f80": "auro metal saurus",
  "#f5ffbe": "australian mint",
  "#568203": "avocado",
  "#4e6649": "axolotl",
  "#f7c8da": "azalea",
  "#0d1c19": "aztec",
  "#c39953": "aztec gold",
  "#007fff": "azure",
  "#f0ffff": "azure mist",
  "#dbe9f4": "azureish white",
  "#89cff0": "baby blue",
  "#a1caf1": "baby blue eyes",
  "#fefefa": "baby powder",
  "#026395": "bahama blue",
  "#a5cb0c": "bahia",
  "#fff8d1": "baja white",
  "#ff91af": "baker miller pink",
  "#859faf": "bali hai",
  "#21abcd": "ball blue",
  "#2a2630": "baltic sea",
  "#da6304": "bamboo",
  "#fae7b5": "banana mania",
  "#ffe135": "banana yellow",
  "#858470": "bandicoot",
  "#ded717": "barberry",
  "#e0218a": "barbie pink",
  "#a68b5b": "barley corn",
  "#fff4ce": "barley white",
  "#7c0a02": "barn red",
  "#44012d": "barossa",
  "#292130": "bastille",
  "#828f72": "battleship gray",
  "#7da98d": "bay leaf",
  "#273a81": "bay of many",
  "#98777b": "bazaar",
  "#2e5894": "bdazzled blue",
  "#bcd4e6": "beau blue",
  "#eec1be": "beauty bush",
  "#9f8170": "beaver",
  "#fef2c7": "beeswax",
  "#f5f5dc": "beige",
  "#add8ff": "belgion",
  "#7dd8c6": "bermuda",
  "#6b8ba2": "bermuda gray",
  "#dee5c0": "beryl green",
  "#fcfbf3": "bianca",
  "#9c2542": "big dip oruby",
  "#e88e5a": "big foot feet",
  "#162a40": "big stone",
  "#327c14": "bilbao",
  "#b2a1ea": "biloba flower",
  "#373021": "birch",
  "#d4cd16": "bird flower",
  "#1b3162": "biscay",
  "#497183": "bismark",
  "#c1b7a4": "bison hide",
  "#ffe4c4": "bisque",
  "#3d2b1f": "bistre",
  "#868974": "bitter",
  "#cae00d": "bitter lemon",
  "#fe6f5e": "bittersweet",
  "#bf4f51": "bittersweet shimmer",
  "#eededa": "bizarre",
  "#000000": "black",
  "#3d0c02": "black bean",
  "#54626f": "black coral",
  "#0b1304": "black forest",
  "#f6f7f7": "black haze",
  "#253529": "black leather jacket",
  "#3e2c1c": "black marlin",
  "#3b3c36": "black olive",
  "#041322": "black pearl",
  "#0d0332": "black rock",
  "#67032d": "black rose",
  "#0a001c": "black russian",
  "#bfafb2": "black shadows",
  "#f2fafa": "black squeeze",
  "#fffef6": "black white",
  "#4d0135": "blackberry",
  "#32293a": "blackcurrant",
  "#ffebcd": "blanched almond",
  "#a57164": "blast off bronze",
  "#ff6700": "blaze orange",
  "#fef3d8": "bleach white",
  "#2c2133": "bleached cedar",
  "#318ce7": "bleu de france",
  "#a3e3ed": "blizzard blue",
  "#faf0be": "blond",
  "#dcb4bc": "blossom",
  "#0000ff": "blue",
  "#496679": "blue bayoux",
  "#a2a2d0": "blue bell",
  "#f1e9ff": "blue chalk",
  "#010d1a": "blue charcoal",
  "#0c8990": "blue chill",
  "#380474": "blue diamond",
  "#204852": "blue dianne",
  "#2c0e8c": "blue gem",
  "#6699cc": "blue gray",
  "#0d98ba": "blue green",
  "#bfbed8": "blue haze",
  "#5dadec": "blue jeans",
  "#ace5ee": "blue lagoon",
  "#553592": "blue magenta violet",
  "#7666c6": "blue marguerite",
  "#0066ff": "blue ribbon",
  "#d2f6de": "blue romance",
  "#126180": "blue sapphire",
  "#748881": "blue smoke",
  "#016162": "blue stone",
  "#8a2be2": "blue violet",
  "#042e4c": "blue whale",
  "#5072a7": "blue yonder",
  "#13264d": "blue zodiac",
  "#4f86f7": "blueberry",
  "#1c1cf0": "bluebonnet",
  "#18587a": "blumine",
  "#de5d83": "blush",
  "#79443b": "bole",
  "#afb1b8": "bombay",
  "#e5e0e1": "bon jour",
  "#0095b6": "bondi blue",
  "#e3dac9": "bone",
  "#dde26a": "booger buster",
  "#5c0120": "bordeaux",
  "#4e2a5a": "bossanova",
  "#3b91b4": "boston blue",
  "#cc0000": "boston university red",
  "#c7dde5": "botticelli",
  "#006a4e": "bottle green",
  "#7a7a7a": "boulder",
  "#ae809e": "bouquet",
  "#ba6f1e": "bourbon",
  "#873260": "boysenberry",
  "#4a2a04": "bracken",
  "#0070ff": "brandeis blue",
  "#dec196": "brandy",
  "#cd8429": "brandy punch",
  "#bb8983": "brandy rose",
  "#b5a642": "brass",
  "#5da19f": "breaker bay",
  "#cb4154": "brick red",
  "#fffaf4": "bridal heath",
  "#fef0ec": "bridesmaid",
  "#1dacd6": "bright cerulean",
  "#3c4151": "bright gray",
  "#66ff00": "bright green",
  "#bf94e4": "bright lavender",
  "#d891ef": "bright lilac",
  "#c32148": "bright maroon",
  "#1974d2": "bright navy blue",
  "#b10000": "bright red",
  "#fed33c": "bright sun",
  "#08e8de": "bright turquoise",
  "#d19fe8": "bright ube",
  "#ffaa1d": "bright yellow",
  "#3399ff": "brilliant azure",
  "#f4bbff": "brilliant lavender",
  "#ff55a3": "brilliant rose",
  "#fb607f": "brink pink",
  "#004225": "british racing green",
  "#aba196": "bronco",
  "#cd7f32": "bronze",
  "#4e420c": "bronze olive",
  "#737000": "bronze yellow",
  "#4d400f": "bronzetone",
  "#ffec13": "broom",
  "#964b00": "brown",
  "#592804": "brown bramble",
  "#492615": "brown derby",
  "#401801": "brown pod",
  "#af593e": "brown rust",
  "#af6e4d": "brown sugar",
  "#37290e": "brown tumbleweed",
  "#cc9966": "brown yellow",
  "#1b4d3e": "brunswick green",
  "#ffc1cc": "bubble gum",
  "#e7feff": "bubbles",
  "#622f30": "buccaneer",
  "#a8ae9c": "bud",
  "#7bb661": "bud green",
  "#c1a004": "buddha gold",
  "#f0dc82": "buff",
  "#480607": "bulgarian rose",
  "#864d1e": "bull shot",
  "#0d1117": "bunker",
  "#151f4c": "bunting",
  "#800020": "burgundy",
  "#deb887": "burlywood",
  "#002e20": "burnham",
  "#ff7034": "burning orange",
  "#d99376": "burning sand",
  "#a17a74": "burnished brown",
  "#420303": "burnt maroon",
  "#cc5500": "burnt orange",
  "#e97451": "burnt sienna",
  "#8a3324": "burnt umber",
  "#0d2e1c": "bush",
  "#f3ad16": "buttercup",
  "#a1750d": "buttered rum",
  "#624e9a": "butterfly bush",
  "#fff1b5": "buttermilk",
  "#fffcea": "buttery white",
  "#bd33a4": "byzantine",
  "#702963": "byzantium",
  "#007aa5": "cg blue",
  "#e03c31": "cg red",
  "#4d0a18": "cab sav",
  "#d94972": "cabaret",
  "#3f4c3a": "cabbage pont",
  "#587156": "cactus",
  "#536872": "cadet",
  "#5f9ea0": "cadet blue",
  "#91a3b0": "cadet grey",
  "#b04c6a": "cadillac",
  "#006b3c": "cadmium green",
  "#ed872d": "cadmium orange",
  "#e30022": "cadmium red",
  "#fff600": "cadmium yellow",
  "#4b3621": "cafe noir",
  "#6f440c": "cafe royale",
  "#1e4d2b": "cal poly green",
  "#e0c095": "calico",
  "#fe9d04": "california",
  "#31728d": "calypso",
  "#00581a": "camarone",
  "#a3c1ad": "cambridge blue",
  "#893456": "camelot",
  "#d9b99b": "cameo",
  "#efbbcc": "cameo pink",
  "#3c3910": "camouflage",
  "#78866b": "camouflage green",
  "#d591a4": "can can",
  "#f3fb62": "canary",
  "#ffef00": "canary yellow",
  "#fcd917": "candlelight",
  "#ff0800": "candy apple red",
  "#251706": "cannon black",
  "#894367": "cannon pink",
  "#3c4443": "cape cod",
  "#fee5ac": "cape honey",
  "#a26645": "cape palliser",
  "#dcedb4": "caper",
  "#00bfff": "capri",
  "#592720": "caput mortuum",
  "#ffddaf": "caramel",
  "#eeeee8": "cararra",
  "#01361c": "cardin green",
  "#c41e3a": "cardinal",
  "#8c055e": "cardinal pink",
  "#d29eaa": "careys pink",
  "#00cc99": "caribbean green",
  "#ea88a8": "carissma",
  "#f3ffd8": "carla",
  "#960018": "carmine",
  "#eb4c42": "carmine pink",
  "#ff0038": "carmine red",
  "#5c2e01": "carnaby tan",
  "#f95a61": "carnation",
  "#ffa6c9": "carnation pink",
  "#b31b1b": "carnelian",
  "#56a0d3": "carolina blue",
  "#f9e0ed": "carousel pink",
  "#ed9121": "carrot orange",
  "#f8b853": "casablanca",
  "#2f6168": "casal",
  "#8ba9a5": "cascade",
  "#e6bea5": "cashmere",
  "#adbed1": "casper",
  "#00563b": "castleton green",
  "#52001f": "castro",
  "#062a78": "catalina blue",
  "#703642": "catawba",
  "#eef6f7": "catskill white",
  "#e3bebe": "cavern pink",
  "#3e1c14": "cedar",
  "#c95a49": "cedar chest",
  "#711a00": "cedar wood finish",
  "#92a1cf": "ceil",
  "#ace1af": "celadon",
  "#2f847c": "celadon green",
  "#b8c25d": "celery",
  "#b2ffff": "celeste",
  "#4997d0": "celestial blue",
  "#1e385b": "cello",
  "#163222": "celtic",
  "#8d7662": "cement",
  "#fcfff9": "ceramic",
  "#de3163": "cerise",
  "#ec3b83": "cerise pink",
  "#007ba7": "cerulean",
  "#2a52be": "cerulean blue",
  "#6d9bc3": "cerulean frost",
  "#fff4f3": "chablis",
  "#516e3d": "chalet green",
  "#eed794": "chalky",
  "#354e8c": "chambray",
  "#eddcb1": "chamois",
  "#a0785a": "chamoisee",
  "#f7e7ce": "champagne",
  "#f8c3df": "chantilly",
  "#292937": "charade",
  "#36454f": "charcoal",
  "#fff3f1": "chardon",
  "#ffcd8c": "chardonnay",
  "#232b2b": "charleston green",
  "#baeef9": "charlotte",
  "#d47494": "charm",
  "#e68fac": "charm pink",
  "#dfff00": "chartreuse",
  "#40a860": "chateau green",
  "#bdb3c7": "chatelle",
  "#175579": "chathams blue",
  "#83aa5d": "chelsea cucumber",
  "#9e5302": "chelsea gem",
  "#dfcd6f": "chenin",
  "#fcda98": "cherokee",
  "#ffb7c5": "cherry blossom pink",
  "#2a0359": "cherry pie",
  "#651a14": "cherrywood",
  "#f8d9e9": "cherub",
  "#954535": "chestnut",
  "#8581d9": "chetwode blue",
  "#5d5c58": "chicago",
  "#f1ffc8": "chiffon",
  "#f77703": "chilean fire",
  "#fffde6": "chilean heath",
  "#fcffe7": "china ivory",
  "#a8516e": "china rose",
  "#aa381e": "chinese red",
  "#856088": "chinese violet",
  "#cec7a7": "chino",
  "#a8e3bd": "chinook",
  "#4aff00": "chlorophyll green",
  "#7b3f00": "chocolate",
  "#33036b": "christalle",
  "#67a712": "christi",
  "#e7730a": "christine",
  "#e8f1d4": "chrome white",
  "#ffa700": "chrome yellow",
  "#0e0e18": "cinder",
  "#fde1dc": "cinderella",
  "#98817b": "cinereous",
  "#e34234": "cinnabar",
  "#cd607e": "cinnamon satin",
  "#55280c": "cioccolato",
  "#e4d00a": "citrine",
  "#faf7d6": "citrine white",
  "#9fa91f": "citron",
  "#a1c50a": "citrus",
  "#480656": "clairvoyant",
  "#d4b6af": "clam shell",
  "#7f1734": "claret",
  "#fbcce7": "classic rose",
  "#bdc8b3": "clay ash",
  "#8a8360": "clay creek",
  "#e9fffd": "clear day",
  "#e96e00": "clementine",
  "#371d09": "clinker",
  "#c7c4bf": "cloud",
  "#202e54": "cloud burst",
  "#aca59f": "cloudy",
  "#384910": "clover",
  "#0047ab": "cobalt blue",
  "#481c1c": "cocoa bean",
  "#d2691e": "cocoa brown",
  "#965a3e": "coconut",
  "#f8f7dc": "coconut cream",
  "#0b0b0b": "cod gray",
  "#6f4e37": "coffee",
  "#2a140e": "coffee bean",
  "#9f381d": "cognac",
  "#3f2500": "cola",
  "#aba0d9": "cold purple",
  "#cebaba": "cold turkey",
  "#ffedbc": "colonial white",
  "#c4d8e2": "columbia blue",
  "#5c5d75": "comet",
  "#517c66": "como",
  "#c9d9d2": "conch",
  "#7c7b7a": "concord",
  "#f2f2f2": "concrete",
  "#e9d75a": "confetti",
  "#593737": "congo brown",
  "#f88379": "congo pink",
  "#02478e": "congress blue",
  "#acdd4d": "conifer",
  "#c6726b": "contessa",
  "#002e63": "cool black",
  "#8c92ac": "cool grey",
  "#b87333": "copper",
  "#7e3a15": "copper canyon",
  "#ad6f69": "copper penny",
  "#cb6d51": "copper red",
  "#996666": "copper rose",
  "#944747": "copper rust",
  "#ff3800": "coquelicot",
  "#ff7f50": "coral",
  "#ff4040": "coral red",
  "#c7bca2": "coral reef",
  "#a86b6b": "coral tree",
  "#893f45": "cordovan",
  "#606e68": "corduroy",
  "#c4d0b0": "coriander",
  "#40291d": "cork",
  "#e7bf05": "corn",
  "#f8facd": "corn field",
  "#8b6b0b": "corn harvest",
  "#6495ed": "cornflower blue",
  "#ffb0ac": "cornflower lilac",
  "#fff8dc": "cornsilk",
  "#fad3a2": "corvette",
  "#76395d": "cosmic",
  "#2e2d88": "cosmic cobalt",
  "#fff8e7": "cosmic latte",
  "#ffd8d9": "cosmos",
  "#615d30": "costa del sol",
  "#ffbcd9": "cotton candy",
  "#c2bdb6": "cotton seed",
  "#01371a": "county green",
  "#4d282d": "cowboy",
  "#81613e": "coyote brown",
  "#b95140": "crail",
  "#db5079": "cranberry",
  "#462425": "crater brown",
  "#1f75fe": "crayola blue",
  "#1cac78": "crayola green",
  "#ff7538": "crayola orange",
  "#ee204d": "crayola red",
  "#fce883": "crayola yellow",
  "#fffdd0": "cream",
  "#ffe5a0": "cream brulee",
  "#f5c85c": "cream can",
  "#1e0f04": "creole",
  "#737829": "crete",
  "#dc143c": "crimson",
  "#be0032": "crimson glory",
  "#990000": "crimson red",
  "#736d58": "crocodile",
  "#771f1f": "crown of thorns",
  "#1c1208": "crowshead",
  "#b5ecdf": "cruise",
  "#004816": "crusoe",
  "#fd7b33": "crusta",
  "#924321": "cumin",
  "#fdffd5": "cumulus",
  "#fbbeda": "cupid",
  "#2596d1": "curious blue",
  "#507672": "cutty sark",
  "#00ffff": "cyan",
  "#4e82b4": "cyan azure",
  "#4682bf": "cyan blue azure",
  "#28589c": "cyan cobalt blue",
  "#188bc2": "cyan cornflower blue",
  "#58427c": "cyber grape",
  "#ffd300": "cyber yellow",
  "#f56fa1": "cyclamen",
  "#003e40": "cyprus",
  "#ffff31": "daffodil",
  "#012731": "daintree",
  "#f9e4bc": "dairy cream",
  "#4f2398": "daisy bush",
  "#6e4b26": "dallas",
  "#f0e130": "dandelion",
  "#6093d1": "danube",
  "#00008b": "dark blue",
  "#666699": "dark blue gray",
  "#654321": "dark brown",
  "#88654e": "dark brown tangelo",
  "#770f05": "dark burgundy",
  "#5d3954": "dark byzantium",
  "#a40000": "dark candy apple red",
  "#08457e": "dark cerulean",
  "#986960": "dark chestnut",
  "#cd5b45": "dark coral",
  "#008b8b": "dark cyan",
  "#3c2005": "dark ebony",
  "#0a480d": "dark fern",
  "#b8860b": "dark goldenrod",
  "#013220": "dark green",
  "#1f262a": "dark gunmetal",
  "#6e6ef9": "dark imperial blue",
  "#1a2421": "dark jungle green",
  "#bdb76b": "dark khaki",
  "#734f96": "dark lavender",
  "#534b4f": "dark liver",
  "#8b008b": "dark magenta",
  "#a9a9a9": "dark medium gray",
  "#003366": "dark midnight blue",
  "#4a5d23": "dark moss green",
  "#556b2f": "dark olive green",
  "#ff8c00": "dark orange",
  "#9932cc": "dark orchid",
  "#779ecb": "dark pastel blue",
  "#03c03c": "dark pastel green",
  "#966fd6": "dark pastel purple",
  "#c23b22": "dark pastel red",
  "#e75480": "dark pink",
  "#4f3a3c": "dark puce",
  "#301934": "dark purple",
  "#872657": "dark raspberry",
  "#8b0000": "dark red",
  "#e9967a": "dark salmon",
  "#560319": "dark scarlet",
  "#8fbc8f": "dark sea green",
  "#3c1414": "dark sienna",
  "#8cbed6": "dark sky blue",
  "#483d8b": "dark slate blue",
  "#2f4f4f": "dark slate gray",
  "#177245": "dark spring green",
  "#918151": "dark tan",
  "#ffa812": "dark tangerine",
  "#cc4e5c": "dark terra cotta",
  "#00ced1": "dark turquoise",
  "#d1bea8": "dark vanilla",
  "#9400d3": "dark violet",
  "#9b870c": "dark yellow",
  "#00703c": "dartmouth green",
  "#555555": "davys grey",
  "#a6a29a": "dawn",
  "#f3e9e5": "dawn pink",
  "#7ac488": "de york",
  "#d70a53": "debian red",
  "#d2da97": "deco",
  "#220878": "deep blue",
  "#e47698": "deep blush",
  "#4a3004": "deep bronze",
  "#a9203e": "deep carmine",
  "#ef3038": "deep carmine pink",
  "#e9692c": "deep carrot orange",
  "#da3287": "deep cerise",
  "#b94e48": "deep chestnut",
  "#051040": "deep cove",
  "#002900": "deep fir",
  "#182d09": "deep forest green",
  "#c154c1": "deep fuchsia",
  "#056608": "deep green",
  "#0e7c61": "deep green cyan turquoise",
  "#004b49": "deep jungle green",
  "#333366": "deep koamaru",
  "#f5c71a": "deep lemon",
  "#9955bb": "deep lilac",
  "#cc00cc": "deep magenta",
  "#820000": "deep maroon",
  "#412010": "deep oak",
  "#ff1493": "deep pink",
  "#a95c68": "deep puce",
  "#850101": "deep red",
  "#843f5b": "deep ruby",
  "#ff9933": "deep saffron",
  "#082567": "deep sapphire",
  "#01826b": "deep sea",
  "#095859": "deep sea green",
  "#4a646c": "deep space sparkle",
  "#7e5e60": "deep taupe",
  "#003532": "deep teal",
  "#66424d": "deep tuscan red",
  "#330066": "deep violet",
  "#ba8759": "deer",
  "#b09a95": "del rio",
  "#396413": "dell",
  "#a4a49d": "delta",
  "#7563a8": "deluge",
  "#1560bd": "denim",
  "#2243b6": "denim blue",
  "#ffeed8": "derby",
  "#669999": "desaturated cyan",
  "#ae6020": "desert",
  "#edc9af": "desert sand",
  "#f8f8f7": "desert storm",
  "#ea3c53": "desire",
  "#eafffe": "dew",
  "#db995e": "di serria",
  "#b9f2ff": "diamond",
  "#130000": "diesel",
  "#696969": "dim gray",
  "#5d7747": "dingley",
  "#c53151": "dingy dungeon",
  "#9b7653": "dirt",
  "#871550": "disco",
  "#e29418": "dixie",
  "#1e90ff": "dodger blue",
  "#b86d29": "dogs",
  "#d71868": "dogwood rose",
  "#85bb65": "dollar bill",
  "#f9ff8b": "dolly",
  "#646077": "dolphin",
  "#8e775e": "domino",
  "#5d4c51": "don juan",
  "#664c28": "donkey brown",
  "#6b5755": "dorado",
  "#eee3ad": "double colonial white",
  "#fcf4d0": "double pearl lusta",
  "#e6d7b9": "double spanish white",
  "#6d6c6c": "dove gray",
  "#092256": "downriver",
  "#6fd0c5": "downy",
  "#af8751": "driftwood",
  "#fdf7ad": "drover",
  "#00009c": "duke blue",
  "#a899e6": "dull lavender",
  "#383533": "dune",
  "#e5ccc9": "dust storm",
  "#a8989b": "dusty gray",
  "#efdfbb": "dutch white",
  "#b6baa4": "eagle",
  "#004953": "eagle green",
  "#c9b93b": "earls green",
  "#fff9e6": "early dawn",
  "#e1a95f": "earth yellow",
  "#414c7d": "east bay",
  "#ac91ce": "east side",
  "#1e9ab0": "eastern blue",
  "#e9e3e3": "ebb",
  "#555d50": "ebony",
  "#26283b": "ebony clay",
  "#311c17": "eclipse",
  "#c2b280": "ecru",
  "#f5f3e5": "ecru white",
  "#fa7814": "ecstasy",
  "#105852": "eden",
  "#c8e3d7": "edgewater",
  "#a2aeab": "edward",
  "#1b1b1b": "eerie black",
  "#fff4dd": "egg sour",
  "#ffefc1": "egg white",
  "#614051": "eggplant",
  "#f0ead6": "eggshell",
  "#1034a6": "egyptian blue",
  "#1e1708": "el paso",
  "#8f3e33": "el salva",
  "#7df9ff": "electric blue",
  "#ff003f": "electric crimson",
  "#6f00ff": "electric indigo",
  "#ccff00": "electric lime",
  "#bf00ff": "electric purple",
  "#8b00ff": "electric violet",
  "#ffff33": "electric yellow",
  "#123447": "elephant",
  "#088370": "elf green",
  "#1c7c7d": "elm",
  "#50c878": "emerald",
  "#6c3082": "eminence",
  "#514649": "emperor",
  "#817377": "empress",
  "#0056a7": "endeavour",
  "#f8dd5c": "energy yellow",
  "#ba160c": "engineering international orange",
  "#022d15": "english holly",
  "#b48395": "english lavender",
  "#ab4b52": "english red",
  "#cc474b": "english vermillion",
  "#3e2b23": "english walnut",
  "#8ba690": "envy",
  "#e1bc64": "equator",
  "#612718": "espresso",
  "#211a0e": "eternity",
  "#96c8a2": "eton blue",
  "#44d7a8": "eucalyptus",
  "#cfa39d": "eunry",
  "#024e46": "evening sea",
  "#1c402e": "everglade",
  "#010b13": "fogra29 rich black",
  "#010203": "fogra39 rich black",
  "#427977": "faded jade",
  "#ffefec": "fair pink",
  "#7f626d": "falcon",
  "#c19a6b": "fallow",
  "#801818": "falu red",
  "#b53389": "fandango",
  "#de5285": "fandango pink",
  "#faf3f0": "fantasy",
  "#f400a1": "fashion fuchsia",
  "#e5aa70": "fawn",
  "#796a78": "fedora",
  "#9fdd8c": "feijoa",
  "#4d5d53": "feldgrau",
  "#63b76c": "fern",
  "#657220": "fern frond",
  "#4f7942": "fern green",
  "#704f50": "ferra",
  "#ff2800": "ferrari red",
  "#fbe96c": "festival",
  "#f0fcea": "feta",
  "#6c541e": "field drab",
  "#b35213": "fiery orange",
  "#ff5470": "fiery rose",
  "#626649": "finch",
  "#556d56": "finlandia",
  "#692d54": "finn",
  "#405169": "fiord",
  "#aa4203": "fire",
  "#e89928": "fire bush",
  "#ce2029": "fire engine red",
  "#b22222": "firebrick",
  "#0e2a30": "firefly",
  "#e25822": "flame",
  "#da5b38": "flame pea",
  "#ff7d07": "flamenco",
  "#f2552a": "flamingo",
  "#fc8eac": "flamingo pink",
  "#f7e98e": "flavescent",
  "#eedc82": "flax",
  "#7b8265": "flax smoke",
  "#6f6a61": "flint",
  "#a2006d": "flirt",
  "#fffaf0": "floral white",
  "#ca3435": "flush mahogany",
  "#d8fcfa": "foam",
  "#d7d0ff": "fog",
  "#cbcab6": "foggy gray",
  "#ff004f": "folly",
  "#228b22": "forest green",
  "#fff1ee": "forget me not",
  "#56b4be": "fountain blue",
  "#ffdeb3": "frangipani",
  "#856d4d": "french bistre",
  "#0072bb": "french blue",
  "#fd3f92": "french fuchsia",
  "#bdbdc6": "french gray",
  "#86608e": "french lilac",
  "#9efd38": "french lime",
  "#d473d4": "french mauve",
  "#bdedfd": "french pass",
  "#fd6c9e": "french pink",
  "#811453": "french plum",
  "#4e1609": "french puce",
  "#c72c48": "french raspberry",
  "#f64a8a": "french rose",
  "#77b5fe": "french sky blue",
  "#8806ce": "french violet",
  "#ac1e44": "french wine",
  "#a6e7ff": "fresh air",
  "#990066": "fresh eggplant",
  "#807e79": "friar gray",
  "#b1e2c1": "fringy flower",
  "#f57584": "froly",
  "#edf5dd": "frost",
  "#e936a7": "frostbite",
  "#dbfff8": "frosted mint",
  "#e4f6e7": "frostee",
  "#4f9d5d": "fruit salad",
  "#ff00ff": "fuchsia",
  "#7a58c1": "fuchsia blue",
  "#ff77ff": "fuchsia pink",
  "#cc397b": "fuchsia purple",
  "#c74375": "fuchsia rose",
  "#bede0d": "fuego",
  "#eca927": "fuel yellow",
  "#e48400": "fulvous",
  "#1959a8": "fun blue",
  "#016d39": "fun green",
  "#54534d": "fuscous gray",
  "#cc6666": "fuzzy wuzzy",
  "#c45655": "fuzzy wuzzy brown",
  "#00ab66": "go green",
  "#163531": "gable green",
  "#dcdcdc": "gainsboro",
  "#efefef": "gallery",
  "#dcb20c": "galliano",
  "#e49b0f": "gamboge",
  "#996600": "gamboge orange",
  "#ffdf46": "gargoyle gas",
  "#d18f1b": "geebung",
  "#007f66": "generic viridian",
  "#15736b": "genoa",
  "#fb8989": "geraldine",
  "#d4dfe2": "geyser",
  "#c7c9d5": "ghost",
  "#f8f8ff": "ghost white",
  "#b05c52": "giants club",
  "#fe5a1d": "giants orange",
  "#523c94": "gigas",
  "#b8b56a": "gimblet",
  "#e8f2eb": "gin",
  "#fff9e2": "gin fizz",
  "#b06500": "ginger",
  "#f8e4bf": "givry",
  "#80b3c4": "glacier",
  "#61845f": "glade green",
  "#6082b6": "glaucous",
  "#e6e8fa": "glitter",
  "#ab92b3": "glossy grape",
  "#726d4e": "go ben",
  "#3d7d52": "goblin",
  "#f18200": "gold drop",
  "#85754e": "gold fusion",
  "#deba13": "gold tips",
  "#ffd700": "golden",
  "#e28913": "golden bell",
  "#996515": "golden brown",
  "#f0d52d": "golden dream",
  "#f5fb3d": "golden fizz",
  "#c0362c": "golden gate bridge",
  "#fde295": "golden glow",
  "#fcc200": "golden poppy",
  "#f0db7d": "golden sand",
  "#ffcc5c": "golden tainoi",
  "#ffdf00": "golden yellow",
  "#daa520": "goldenrod",
  "#261414": "gondola",
  "#0b1107": "gordons green",
  "#fff14f": "gorse",
  "#069b81": "gossamer",
  "#d2f8b0": "gossip",
  "#6d92a1": "gothic",
  "#2f3cb3": "governor bay",
  "#e4d5b7": "grain brown",
  "#ffd38c": "grandis",
  "#676767": "granite gray",
  "#8d8974": "granite green",
  "#d5f6e3": "granny apple",
  "#84a0a0": "granny smith",
  "#a8e4a0": "granny smith apple",
  "#6f2da8": "grape",
  "#251607": "graphite",
  "#4a444b": "gravel",
  "#808080": "gray",
  "#465945": "gray asparagus",
  "#a2aab3": "gray chateau",
  "#c3c3bd": "gray nickel",
  "#e7ece6": "gray nurse",
  "#a9a491": "gray olive",
  "#c1becd": "gray suit",
  "#00ff00": "green",
  "#1164b4": "green blue",
  "#009966": "green cyan",
  "#01a368": "green haze",
  "#24500f": "green house",
  "#25311c": "green kelp",
  "#436a0d": "green leaf",
  "#a7f432": "green lizard",
  "#cbd3b0": "green mist",
  "#1d6142": "green pea",
  "#6eaea1": "green sheen",
  "#a4af6e": "green smoke",
  "#b8c1b1": "green spring",
  "#032b52": "green vogue",
  "#101405": "green waterloo",
  "#e8ebe0": "green white",
  "#adff2f": "green yellow",
  "#d54600": "grenadier",
  "#885818": "grizzly",
  "#a99a86": "grullo",
  "#ba0101": "guardsman red",
  "#051657": "gulf blue",
  "#80b3ae": "gulf stream",
  "#9dacb7": "gull gray",
  "#b6d3bf": "gum leaf",
  "#7ca1a6": "gumbo",
  "#414257": "gun powder",
  "#2a3439": "gunmetal",
  "#828685": "gunsmoke",
  "#9a9577": "gurkha",
  "#98811b": "hacienda",
  "#6b2a14": "hairy heath",
  "#1b1035": "haiti",
  "#663854": "halayà úbe",
  "#85c4cc": "half baked",
  "#fdf6d3": "half colonial white",
  "#fef7de": "half dutch white",
  "#fef4db": "half spanish white",
  "#fffee1": "half and half",
  "#e5d8af": "hampton",
  "#446ccf": "han blue",
  "#5218fa": "han purple",
  "#3fff00": "harlequin",
  "#46cb18": "harlequin green",
  "#e6f2ea": "harp",
  "#c90016": "harvard crimson",
  "#da9100": "harvest gold",
  "#5590d9": "havelock blue",
  "#9d5616": "hawaiian tan",
  "#d4e2fc": "hawkes blue",
  "#ff7a00": "heat wave",
  "#541012": "heath",
  "#b7c3d0": "heather",
  "#b6b095": "heathered gray",
  "#2b3228": "heavy metal",
  "#df73ff": "heliotrope",
  "#aa98a9": "heliotrope gray",
  "#aa00bb": "heliotrope magenta",
  "#5e5d3b": "hemlock",
  "#907874": "hemp",
  "#b6316c": "hibiscus",
  "#6f8e63": "highland",
  "#aca586": "hillary",
  "#6a5d1b": "himalaya",
  "#e6ffe9": "hint of green",
  "#fbf9f9": "hint of red",
  "#fafde4": "hint of yellow",
  "#589aaf": "hippie blue",
  "#53824b": "hippie green",
  "#ae4560": "hippie pink",
  "#a1adb5": "hit gray",
  "#ffab81": "hit pink",
  "#c8a528": "hokey pokey",
  "#65869f": "hoki",
  "#011d13": "holly",
  "#4f1c70": "honey flower",
  "#f0fff0": "honeydew",
  "#edfc84": "honeysuckle",
  "#006db0": "honolulu blue",
  "#49796b": "hookers green",
  "#d06da1": "hopbush",
  "#5a87a0": "horizon",
  "#543d37": "horses",
  "#604913": "horses neck",
  "#ff1dce": "hot magenta",
  "#ff69b4": "hot pink",
  "#b38007": "hot toddy",
  "#cff9f3": "humming bird",
  "#355e3b": "hunter green",
  "#877c7b": "hurricane",
  "#b7a458": "husk",
  "#b1f4e7": "ice cold",
  "#71a6d2": "iceberg",
  "#fcf75e": "icterine",
  "#319177": "illuminating emerald",
  "#f6a4c9": "illusion",
  "#602f6b": "imperial",
  "#002395": "imperial blue",
  "#ed2939": "imperial red",
  "#b0e313": "inch worm",
  "#b2ec5d": "inchworm",
  "#4c516d": "independence",
  "#138808": "india green",
  "#cd5c5c": "indian red",
  "#4d1e01": "indian tan",
  "#e3a857": "indian yellow",
  "#4b0082": "indigo",
  "#091f92": "indigo dye",
  "#c26b03": "indochine",
  "#002fa7": "international klein blue",
  "#ff4f00": "international orange",
  "#5a4fcf": "iris",
  "#5f3d26": "irish coffee",
  "#433120": "iroko",
  "#d4d7d9": "iron",
  "#676662": "ironside gray",
  "#86483c": "ironstone",
  "#b3446c": "irresistible",
  "#f4f0ec": "isabelline",
  "#009000": "islamic green",
  "#fffcee": "island spice",
  "#fffff0": "ivory",
  "#2e0329": "jacaranda",
  "#3a2a6a": "jacarta",
  "#2e1905": "jacko bean",
  "#20208d": "jacksons purple",
  "#00a86b": "jade",
  "#ef863f": "jaffa",
  "#c2e8e5": "jagged ice",
  "#350e57": "jagger",
  "#080110": "jaguar",
  "#5b3013": "jambalaya",
  "#f4ebd3": "janna",
  "#9d2933": "japanese carmine",
  "#264348": "japanese indigo",
  "#0a6906": "japanese laurel",
  "#780109": "japanese maple",
  "#5b3256": "japanese violet",
  "#d87c63": "japonica",
  "#f8de7e": "jasmine",
  "#d73b3e": "jasper",
  "#1fc2c2": "java",
  "#a50b5e": "jazzberry jam",
  "#da614e": "jelly bean",
  "#343434": "jet",
  "#b5d2ce": "jet stream",
  "#126b40": "jewel",
  "#3b1f1f": "jon",
  "#f4ca16": "jonquil",
  "#8ab9f1": "jordy blue",
  "#544333": "judge gray",
  "#7c7b82": "jumbo",
  "#bdda57": "june bud",
  "#29ab87": "jungle green",
  "#b4cfd3": "jungle mist",
  "#6d9292": "juniper",
  "#eccdb9": "just right",
  "#e8000d": "ku crimson",
  "#5e483e": "kabul",
  "#004620": "kaitoke green",
  "#c6c8bd": "kangaroo",
  "#1e1609": "karaka",
  "#ffead4": "karry",
  "#507096": "kashmir blue",
  "#4cbb17": "kelly green",
  "#454936": "kelp",
  "#7c1c05": "kenyan copper",
  "#3ab09e": "keppel",
  "#e8f48c": "key lime",
  "#bfc921": "key lime pie",
  "#c3b091": "khaki",
  "#e1ead4": "kidnapper",
  "#240c02": "kilamanjaro",
  "#3a6a47": "killarney",
  "#736c9f": "kimberly",
  "#3e0480": "kingfisher daisy",
  "#e79fc4": "kobi",
  "#6b4423": "kobicha",
  "#6e6d57": "kokoda",
  "#354230": "kombu green",
  "#8f4b0e": "korma",
  "#ffbd5f": "koromiko",
  "#ffe772": "kournikova",
  "#886221": "kumera",
  "#368716": "la palma",
  "#b3c110": "la rioja",
  "#087830": "la salle green",
  "#d6cadd": "languid lavender",
  "#26619c": "lapis lazuli",
  "#c6e610": "las palmas",
  "#c8b568": "laser",
  "#749378": "laurel",
  "#a9ba9d": "laurel green",
  "#cf1020": "lava",
  "#b57edc": "lavender",
  "#fff0f5": "lavender blush",
  "#c4c3d0": "lavender gray",
  "#9457eb": "lavender indigo",
  "#ee82ee": "lavender magenta",
  "#e6e6fa": "lavender mist",
  "#fbaed2": "lavender pink",
  "#967bb6": "lavender purple",
  "#fba0e3": "lavender rose",
  "#7cfc00": "lawn green",
  "#967059": "leather",
  "#fff700": "lemon",
  "#fffacd": "lemon chiffon",
  "#cca01d": "lemon curry",
  "#ac9e22": "lemon ginger",
  "#fdff00": "lemon glacier",
  "#9b9e8f": "lemon grass",
  "#e3ff00": "lemon lime",
  "#f6eabe": "lemon meringue",
  "#fff44f": "lemon yellow",
  "#ba93d8": "lenurple",
  "#545aa7": "liberty",
  "#1a1110": "licorice",
  "#fdd5b1": "light apricot",
  "#add8e6": "light blue",
  "#fe2e2e": "light brilliant red",
  "#b5651d": "light brown",
  "#e66771": "light carmine pink",
  "#88ace0": "light cobalt blue",
  "#f08080": "light coral",
  "#93ccea": "light cornflower blue",
  "#f56991": "light crimson",
  "#e0ffff": "light cyan",
  "#ff5ccd": "light deep pink",
  "#c8ad7f": "light french beige",
  "#f984ef": "light fuchsia pink",
  "#fafad2": "light goldenrod yellow",
  "#d3d3d3": "light gray",
  "#cc99cc": "light grayish magenta",
  "#90ee90": "light green",
  "#ffb3de": "light hot pink",
  "#f0e68c": "light khaki",
  "#d39bcb": "light medium orchid",
  "#addfad": "light moss green",
  "#e6a8d7": "light orchid",
  "#b19cd9": "light pastel purple",
  "#ffb6c1": "light pink",
  "#ffa07a": "light salmon",
  "#ff9999": "light salmon pink",
  "#20b2aa": "light sea green",
  "#87cefa": "light sky blue",
  "#778899": "light slate gray",
  "#b0c4de": "light steel blue",
  "#b38b6d": "light taupe",
  "#afeeee": "light turquoise",
  "#ffffe0": "light yellow",
  "#fcc01e": "lightning yellow",
  "#c8a2c8": "lilac",
  "#9874d3": "lilac bush",
  "#ae98aa": "lilac luster",
  "#c8aabf": "lily",
  "#e7f8ff": "lily white",
  "#76bd17": "lima",
  "#bfff00": "lime",
  "#32cd32": "lime green",
  "#6f9d02": "limeade",
  "#747d63": "limed ash",
  "#ac8a56": "limed oak",
  "#394851": "limed spruce",
  "#9dc209": "limerick",
  "#195905": "lincoln green",
  "#faf0e6": "linen",
  "#d9e4f5": "link water",
  "#ab0563": "lipstick",
  "#423921": "lisbon brown",
  "#6ca0dc": "little boy blue",
  "#674c47": "liver",
  "#987456": "liver chestnut",
  "#4d282e": "livid brown",
  "#eef4de": "loafer",
  "#bdc9ce": "loblolly",
  "#2c8c84": "lochinvar",
  "#007ec7": "lochmara",
  "#a8af8e": "locust",
  "#242a1d": "log cabin",
  "#aaa9cd": "logan",
  "#dfcfdb": "lola",
  "#bea6c3": "london hue",
  "#6d0101": "lonestar",
  "#863c3c": "lotus",
  "#460b41": "loulou",
  "#af9f1c": "lucky",
  "#1a1a68": "lucky point",
  "#ffe4cd": "lumber",
  "#3c493a": "lunar green",
  "#e62020": "lust",
  "#a7882c": "luxor gold",
  "#697e9a": "lynch",
  "#18453b": "msu green",
  "#d9f7ff": "mabel",
  "#ffbd88": "macaroni and cheese",
  "#ffb97b": "macaroni and cheese",
  "#b7f0be": "madang",
  "#09255d": "madison",
  "#3f3002": "madras",
  "#ca1f7b": "magenta",
  "#9f4576": "magenta haze",
  "#cc338b": "magenta pink",
  "#aaf0d1": "magic mint",
  "#ff4466": "magic potion",
  "#f8f4ff": "magnolia",
  "#c04000": "mahogany",
  "#b06608": "mai tai",
  "#fbec5d": "maize",
  "#6050dc": "majorelle blue",
  "#897d6d": "makara",
  "#444954": "mako",
  "#0bda51": "malachite",
  "#7dc8f7": "malibu",
  "#233418": "mallard",
  "#bdb2a1": "malta",
  "#8e8190": "mamba",
  "#979aaa": "manatee",
  "#ad781b": "mandalay",
  "#f37a48": "mandarin",
  "#e25465": "mandy",
  "#f2c3b2": "mandys pink",
  "#ff8243": "mango tango",
  "#f5c999": "manhattan",
  "#74c365": "mantis",
  "#8b9c90": "mantle",
  "#eeef78": "manz",
  "#880085": "mardi gras",
  "#eaa221": "marigold",
  "#fbe870": "marigold yellow",
  "#286acd": "mariner",
  "#800000": "maroon",
  "#520c17": "maroon oak",
  "#0b0f08": "marshland",
  "#afa09e": "martini",
  "#363050": "martinique",
  "#f8db9d": "marzipan",
  "#403b38": "masala",
  "#1b659d": "matisse",
  "#b05d54": "matrix",
  "#4e3b41": "matterhorn",
  "#e0b0ff": "mauve",
  "#915f6d": "mauve taupe",
  "#ef98aa": "mauvelous",
  "#d8c2d5": "maverick",
  "#47abcc": "maximum blue",
  "#fafa37": "maximum yellow",
  "#4c9141": "may green",
  "#73c2fb": "maya blue",
  "#e5b73b": "meat brown",
  "#66ddaa": "medium aquamarine",
  "#0000cd": "medium blue",
  "#e2062c": "medium candy apple red",
  "#035096": "medium electric blue",
  "#1c352d": "medium jungle green",
  "#ba55d3": "medium orchid",
  "#9370db": "medium purple",
  "#bb3385": "medium red violet",
  "#aa4069": "medium ruby",
  "#3cb371": "medium sea green",
  "#80daeb": "medium sky blue",
  "#7b68ee": "medium slate blue",
  "#c9dc87": "medium spring bud",
  "#00fa9a": "medium spring green",
  "#48d1cc": "medium turquoise",
  "#d9603b": "medium vermilion",
  "#e4c2d5": "melanie",
  "#300529": "melanzane",
  "#f8b878": "mellow apricot",
  "#fdbcb4": "melon",
  "#c7c1ff": "melrose",
  "#e5e5e5": "mercury",
  "#f6f0e6": "merino",
  "#413c37": "merlin",
  "#831923": "merlot",
  "#ff00fd": "metal pink",
  "#49371b": "metallic bronze",
  "#71291d": "metallic copper",
  "#d4af37": "metallic gold",
  "#0a7e8c": "metallic seaweed",
  "#9c7c38": "metallic sunburst",
  "#d07d12": "meteor",
  "#3c1f76": "meteorite",
  "#e4007c": "mexican pink",
  "#a72525": "mexican red",
  "#5f5f6e": "mid gray",
  "#702670": "midnight",
  "#191970": "midnight blue",
  "#041004": "midnight moss",
  "#2d2510": "mikado",
  "#ffc40c": "mikado yellow",
  "#faffa4": "milan",
  "#b81104": "milano red",
  "#fff6d4": "milk punch",
  "#594433": "millbrook",
  "#f8fdd3": "mimosa",
  "#e3f988": "mindaro",
  "#323232": "mine shaft",
  "#3f5d53": "mineral green",
  "#36747d": "ming",
  "#f5e050": "minion yellow",
  "#3f307f": "minsk",
  "#3eb489": "mint",
  "#f5fffa": "mint cream",
  "#98ff98": "mint green",
  "#f1eec1": "mint julep",
  "#c4f4eb": "mint tulip",
  "#161928": "mirage",
  "#d1d2dd": "mischka",
  "#c4c4bc": "mist gray",
  "#bbb477": "misty moss",
  "#ffe4e1": "misty rose",
  "#7f7589": "mobster",
  "#6e1d14": "moccaccino",
  "#ffe4b5": "moccasin",
  "#782d19": "mocha",
  "#c04737": "mojo",
  "#ffa194": "mona lisa",
  "#8b0723": "monarch",
  "#4a3c30": "mondo",
  "#b5a27f": "mongoose",
  "#8a8389": "monsoon",
  "#83d0c6": "monte carlo",
  "#c7031e": "monza",
  "#7f76d3": "moody blue",
  "#fcfeda": "moon glow",
  "#dcddcc": "moon mist",
  "#d6cef6": "moon raker",
  "#73a9c2": "moonstone blue",
  "#ae0c00": "mordant red",
  "#9edee0": "morning glory",
  "#441d00": "morocco brown",
  "#504351": "mortar",
  "#036a6e": "mosque",
  "#8a9a5b": "moss green",
  "#30ba8f": "mountain meadow",
  "#959396": "mountain mist",
  "#997a8d": "mountbatten pink",
  "#b78e5c": "muddy waters",
  "#aa8b5b": "muesli",
  "#306030": "mughal green",
  "#c54b8c": "mulberry",
  "#5c0536": "mulberry wood",
  "#8c472f": "mule fawn",
  "#4e4562": "mulled wine",
  "#828e84": "mummys tomb",
  "#0093af": "munsell blue",
  "#00a877": "munsell green",
  "#9f00c5": "munsell purple",
  "#f2003c": "munsell red",
  "#efcc00": "munsell yellow",
  "#ffdb58": "mustard",
  "#d69188": "my pink",
  "#ffb31f": "my sin",
  "#317873": "myrtle green",
  "#d65282": "mystic",
  "#ad4379": "mystic maroon",
  "#0087bd": "ncs blue",
  "#009f6b": "ncs green",
  "#c40233": "ncs red",
  "#f6adc6": "nadeshiko pink",
  "#4b5d52": "nandor",
  "#aca494": "napa",
  "#2a8000": "napier green",
  "#fada5e": "naples yellow",
  "#edf9f1": "narvik",
  "#8b8680": "natural gray",
  "#ffdead": "navajo white",
  "#000080": "navy",
  "#cbdbd6": "nebula",
  "#ffe2c5": "negroni",
  "#ffa343": "neon carrot",
  "#fe4164": "neon fuchsia",
  "#39ff14": "neon green",
  "#8eabc1": "nepal",
  "#7cb7bb": "neptune",
  "#140600": "nero",
  "#646e75": "nevada",
  "#214fc6": "new car",
  "#f3d69d": "new orleans",
  "#d7837f": "new york pink",
  "#06a189": "niagara",
  "#727472": "nickel",
  "#1f120f": "night rider",
  "#aa375a": "night shadz",
  "#193751": "nile blue",
  "#b7b1b1": "nobel",
  "#bab1a2": "nomad",
  "#a4dded": "non photo blue",
  "#059033": "north texas green",
  "#a8bd9f": "norway",
  "#c59922": "nugget",
  "#81422c": "nutmeg",
  "#683600": "nutmeg wood finish",
  "#e9ffdb": "nyanza",
  "#feefce": "oasis",
  "#02866f": "observatory",
  "#4f42b5": "ocean blue",
  "#0077be": "ocean boat blue",
  "#48bf91": "ocean green",
  "#cc7722": "ochre",
  "#e6f8f3": "off green",
  "#fef9e3": "off yellow",
  "#fd5240": "ogre odor",
  "#281e15": "oil",
  "#901e1e": "old brick",
  "#43302e": "old burgundy",
  "#724a2f": "old copper",
  "#cfb53b": "old gold",
  "#563c5c": "old heliotrope",
  "#fdf5e6": "old lace",
  "#796878": "old lavender",
  "#867e36": "old moss green",
  "#c08081": "old rose",
  "#848482": "old silver",
  "#808000": "olive",
  "#6b8e23": "olive drab",
  "#3c341f": "olive drab seven",
  "#b5b35c": "olive green",
  "#8b8470": "olive haze",
  "#716e10": "olivetone",
  "#9ab973": "olivine",
  "#cdf4ff": "onahau",
  "#2f270e": "onion",
  "#353839": "onyx",
  "#a9c6c2": "opal",
  "#b784a7": "opera mauve",
  "#8e6f70": "opium",
  "#377475": "oracle",
  "#ff7f00": "orange",
  "#ff9f00": "orange peel",
  "#ff4500": "orange red",
  "#c45719": "orange roughy",
  "#fa5b3d": "orange soda",
  "#fefced": "orange white",
  "#f8d568": "orange yellow",
  "#da70d6": "orchid",
  "#f2bdcd": "orchid pink",
  "#fffdf3": "orchid white",
  "#9b4703": "oregon",
  "#6c2e1f": "organ",
  "#015e85": "orient",
  "#c69191": "oriental pink",
  "#f3fbd4": "orinoco",
  "#fb4f14": "orioles orange",
  "#878d91": "oslo gray",
  "#e9f8ed": "ottoman",
  "#414a4c": "outer space",
  "#ff6e4a": "outrageous orange",
  "#002147": "oxford blue",
  "#779e86": "oxley",
  "#dafaff": "oyster bay",
  "#e9cecd": "oyster pink",
  "#a65529": "paarl",
  "#776f61": "pablo",
  "#1ca9c9": "pacific blue",
  "#778120": "pacifika",
  "#411f10": "paco",
  "#ade6c4": "padua",
  "#006600": "pakistan green",
  "#273be2": "palatinate blue",
  "#682860": "palatinate purple",
  "#987654": "pale brown",
  "#ffff99": "pale canary",
  "#af4035": "pale carmine",
  "#9bc4e2": "pale cerulean",
  "#ddadaf": "pale chestnut",
  "#da8a67": "pale copper",
  "#abcdef": "pale cornflower blue",
  "#87d3f8": "pale cyan",
  "#e6be8a": "pale gold",
  "#eee8aa": "pale goldenrod",
  "#98fb98": "pale green",
  "#dcd0ff": "pale lavender",
  "#c0d3b9": "pale leaf",
  "#f984e5": "pale magenta",
  "#ff99cc": "pale magenta pink",
  "#988d77": "pale oyster",
  "#fadadd": "pale pink",
  "#dda0dd": "pale plum",
  "#fdfeb8": "pale prim",
  "#db7093": "pale red violet",
  "#96ded1": "pale robin egg blue",
  "#ffe1f2": "pale rose",
  "#c9c0bb": "pale silver",
  "#6e7783": "pale sky",
  "#c3bfc1": "pale slate",
  "#ecebbd": "pale spring bud",
  "#bc987e": "pale taupe",
  "#cc99ff": "pale violet",
  "#09230f": "palm green",
  "#19330e": "palm leaf",
  "#f4f2ee": "pampas",
  "#eaf6ee": "panache",
  "#edcdab": "pancho",
  "#78184a": "pansy purple",
  "#0018a8": "pantone blue",
  "#00ad43": "pantone green",
  "#d0417e": "pantone magenta",
  "#ff5800": "pantone orange",
  "#d74894": "pantone pink",
  "#fedf00": "pantone yellow",
  "#009b7d": "paolo veronese green",
  "#ffefd5": "papaya whip",
  "#8d0226": "paprika",
  "#e63e62": "paradise pink",
  "#317d82": "paradiso",
  "#f1e9d2": "parchment",
  "#fff46e": "paris daisy",
  "#26056a": "paris m",
  "#cadcd4": "paris white",
  "#134f19": "parsley",
  "#aec6cf": "pastel blue",
  "#836953": "pastel brown",
  "#cfcfc4": "pastel gray",
  "#77dd77": "pastel green",
  "#f49ac2": "pastel magenta",
  "#ffb347": "pastel orange",
  "#dea5a4": "pastel pink",
  "#b39eb5": "pastel purple",
  "#ff6961": "pastel red",
  "#cb99c9": "pastel violet",
  "#fdfd96": "pastel yellow",
  "#639a8f": "patina",
  "#def5ff": "pattens blue",
  "#260368": "paua",
  "#d7c498": "pavlova",
  "#536878": "paynes grey",
  "#ffcba4": "peach",
  "#fff0db": "peach cream",
  "#ffcc99": "peach orange",
  "#ffdab9": "peach puff",
  "#ffdcd6": "peach schnapps",
  "#fadfad": "peach yellow",
  "#782f16": "peanut",
  "#d1e231": "pear",
  "#eae0c8": "pearl",
  "#88d8c0": "pearl aqua",
  "#e8e0d5": "pearl bush",
  "#fcf4dc": "pearl lusta",
  "#32c6a6": "pearl mystic turquoise",
  "#b768a2": "pearly purple",
  "#716b56": "peat",
  "#3eabbf": "pelorous",
  "#e3f5e1": "peppermint",
  "#a9bef2": "perano",
  "#d0bef8": "perfume",
  "#e6e200": "peridot",
  "#e1e6d6": "periglacial blue",
  "#ccccff": "periwinkle",
  "#c3cde6": "periwinkle gray",
  "#e12c2c": "permanent geranium lake",
  "#1c39bb": "persian blue",
  "#00a693": "persian green",
  "#32127a": "persian indigo",
  "#d99058": "persian orange",
  "#f77fbe": "persian pink",
  "#701c1c": "persian plum",
  "#cc3333": "persian red",
  "#fe28a2": "persian rose",
  "#ec5800": "persimmon",
  "#cd853f": "peru",
  "#7f3a02": "peru tan",
  "#7c7631": "pesto",
  "#db9690": "petite orchid",
  "#96a8a1": "pewter",
  "#8ba8b7": "pewter blue",
  "#a3807b": "pharlap",
  "#000f89": "phthalo blue",
  "#123524": "phthalo green",
  "#fff39d": "picasso",
  "#6e4826": "pickled bean",
  "#314459": "pickled bluewood",
  "#45b1e8": "picton blue",
  "#c30b4e": "pictorial carmine",
  "#fdd7e4": "pig pink",
  "#afbdd9": "pigeon post",
  "#fddde6": "piggy pink",
  "#333399": "pigment blue",
  "#00a550": "pigment green",
  "#ed1c24": "pigment red",
  "#6d5e54": "pine cone",
  "#c7cd90": "pine glade",
  "#01796f": "pine green",
  "#171f04": "pine tree",
  "#ffc0cb": "pink",
  "#fc74fd": "pink flamingo",
  "#e1c0c8": "pink flare",
  "#ffddf4": "pink lace",
  "#fff1d8": "pink lady",
  "#d8b2d1": "pink lavender",
  "#ff9966": "pink orange",
  "#e7accf": "pink pearl",
  "#980036": "pink raspberry",
  "#f78fa7": "pink sherbet",
  "#beb5b7": "pink swan",
  "#c96323": "piper",
  "#fef4cc": "pipi",
  "#ffe1df": "pippin",
  "#ba7f03": "pirate gold",
  "#93c572": "pistachio",
  "#c0d8b6": "pixie green",
  "#391285": "pixie powder",
  "#ff9000": "pizazz",
  "#c99415": "pizza",
  "#27504b": "plantation",
  "#e5e4e2": "platinum",
  "#8e4585": "plum",
  "#5946b2": "plump purple",
  "#8f021c": "pohutukawa",
  "#e5f9f6": "polar",
  "#5da493": "polished pine",
  "#8da8cc": "polo blue",
  "#f34723": "pomegranate",
  "#660045": "pompadour",
  "#be4f62": "popstar",
  "#eff2f3": "porcelain",
  "#eaae69": "porsche",
  "#251f4f": "port gore",
  "#ffffb4": "portafino",
  "#8b9fee": "portage",
  "#f9e663": "portica",
  "#ff5a36": "portland orange",
  "#f5e7e2": "pot pourri",
  "#8c5738": "potters clay",
  "#bcc9c2": "powder ash",
  "#b0e0e6": "powder blue",
  "#9a3820": "prairie sand",
  "#d0c0e5": "prelude",
  "#f0e2ec": "prim",
  "#edea99": "primrose",
  "#ff85cf": "princess perfume",
  "#f58025": "princeton orange",
  "#00b7eb": "process cyan",
  "#ff0090": "process magenta",
  "#fef5f1": "provincial pink",
  "#003153": "prussian blue",
  "#df00ff": "psychedelic purple",
  "#cc8899": "puce",
  "#7d2c14": "pueblo",
  "#3fc1aa": "puerto rico",
  "#644117": "pullman brown",
  "#3b331c": "pullman green",
  "#c2cac4": "pumice",
  "#ff7518": "pumpkin",
  "#b1610b": "pumpkin skin",
  "#dc4333": "punch",
  "#4d3d14": "punga",
  "#800080": "purple",
  "#69359c": "purple heart",
  "#9678b6": "purple mountain majesty",
  "#4e5180": "purple navy",
  "#fe4eda": "purple pizzazz",
  "#9c51b6": "purple plum",
  "#50404d": "purple taupe",
  "#9a4eae": "purpureus",
  "#e7cd8c": "putty",
  "#fffdf4": "quarter pearl lusta",
  "#f7f2e1": "quarter spanish white",
  "#51484f": "quartz",
  "#436b95": "queen blue",
  "#e8ccd7": "queen pink",
  "#a6a6a6": "quick silver",
  "#bd978e": "quicksand",
  "#d6d6d1": "quill gray",
  "#8e3a59": "quinacridone magenta",
  "#623f2d": "quincy",
  "#0247fe": "ryb blue",
  "#66b032": "ryb green",
  "#fb9902": "ryb orange",
  "#fe2712": "ryb red",
  "#8601af": "ryb violet",
  "#fefe33": "ryb yellow",
  "#0c1911": "racing green",
  "#ff355e": "radical red",
  "#eadab8": "raffia",
  "#b9c8ac": "rainee",
  "#242124": "raisin black",
  "#fbab60": "rajah",
  "#2e3222": "rangitoto",
  "#1c1e13": "rangoon green",
  "#e30b5d": "raspberry",
  "#e25098": "raspberry pink",
  "#727b89": "raven",
  "#d68a59": "raw sienna",
  "#826644": "raw umber",
  "#ff33cc": "razzle dazzle rose",
  "#e3256b": "razzmatazz",
  "#8d4e85": "razzmic berry",
  "#663399": "rebecca purple",
  "#3c1206": "rebel",
  "#ff0000": "red",
  "#7b3801": "red beech",
  "#8e0000": "red berry",
  "#da6a41": "red damask",
  "#860111": "red devil",
  "#ff5349": "red orange",
  "#6e0902": "red oxide",
  "#e40078": "red purple",
  "#ed0a3f": "red ribbon",
  "#80341f": "red robin",
  "#fd3a4a": "red salsa",
  "#d05f04": "red stage",
  "#c71585": "red violet",
  "#a45a52": "redwood",
  "#c9ffa2": "reef",
  "#9f821c": "reef gold",
  "#013f6a": "regal blue",
  "#522d80": "regalia",
  "#86949f": "regent gray",
  "#aad6e6": "regent st blue",
  "#feebf3": "remy",
  "#a86515": "reno sand",
  "#002387": "resolution blue",
  "#2c1632": "revolver",
  "#2e3f62": "rhino",
  "#777696": "rhythm",
  "#fffef0": "rice cake",
  "#eeffe2": "rice flower",
  "#004040": "rich black",
  "#f1a7fe": "rich brilliant lavender",
  "#d70040": "rich carmine",
  "#0892d0": "rich electric blue",
  "#a85307": "rich gold",
  "#a76bcf": "rich lavender",
  "#b666d2": "rich lilac",
  "#b03060": "rich maroon",
  "#444c38": "rifle green",
  "#bbd009": "rio grande",
  "#f4d81c": "ripe lemon",
  "#410056": "ripe plum",
  "#8be6d8": "riptide",
  "#434c59": "river bed",
  "#704241": "roast coffee",
  "#eac674": "rob roy",
  "#00cccc": "robin egg blue",
  "#4d3833": "rock",
  "#9eb1cd": "rock blue",
  "#ba450c": "rock spray",
  "#8a7f80": "rocket metallic",
  "#c9b29b": "rodeo dust",
  "#747d83": "rolling stone",
  "#de6360": "roman",
  "#795d4c": "roman coffee",
  "#838996": "roman silver",
  "#fffefd": "romance",
  "#ffd2b7": "romantic",
  "#ecc54e": "ronchi",
  "#a62f20": "roof terracotta",
  "#8e4d1e": "rope",
  "#ff007f": "rose",
  "#f9429e": "rose bonbon",
  "#fbb2a3": "rose bud",
  "#800b47": "rose bud cherry",
  "#9e5e6f": "rose dust",
  "#674846": "rose ebony",
  "#e7bcb4": "rose fog",
  "#b76e79": "rose gold",
  "#ff66cc": "rose pink",
  "#c21e56": "rose red",
  "#905d5d": "rose taupe",
  "#ab4e52": "rose vale",
  "#fff6f5": "rose white",
  "#bf5500": "rose of sharon",
  "#65000b": "rosewood",
  "#d40000": "rosso corsa",
  "#bc8f8f": "rosy brown",
  "#c6a84b": "roti",
  "#a23b6c": "rouge",
  "#5d8aa8": "royal air force blue",
  "#0038a8": "royal azure",
  "#4169e1": "royal blue",
  "#ca2c92": "royal fuchsia",
  "#ab3472": "royal heath",
  "#7851a9": "royal purple",
  "#ce4676": "ruber",
  "#d10056": "rubine red",
  "#e0115f": "ruby",
  "#9b111e": "ruby red",
  "#ff0028": "ruddy",
  "#bb6528": "ruddy brown",
  "#e18e96": "ruddy pink",
  "#a81c07": "rufous",
  "#796989": "rum",
  "#f9f8e4": "rum swizzle",
  "#80461b": "russet",
  "#755a57": "russett",
  "#679267": "russian green",
  "#32174d": "russian violet",
  "#b7410e": "rust",
  "#480404": "rustic red",
  "#86560a": "rusty nail",
  "#da2c43": "rusty red",
  "#ff7e00": "sae ece amber",
  "#043927": "sacramento state green",
  "#4c3024": "saddle",
  "#8b4513": "saddle brown",
  "#ff7800": "safety orange",
  "#eed202": "safety yellow",
  "#f4c430": "saffron",
  "#f9bf58": "saffron mango",
  "#bcb88a": "sage",
  "#b7a214": "sahara",
  "#f1e788": "sahara sand",
  "#b8e0f9": "sail",
  "#097f4b": "salem",
  "#fa8072": "salmon",
  "#ff91a4": "salmon pink",
  "#fedb8d": "salomie",
  "#685e6e": "salt box",
  "#f1f7f2": "saltpan",
  "#3a2010": "sambuca",
  "#0b6207": "san felix",
  "#304b6a": "san juan",
  "#456cac": "san marino",
  "#967117": "sand dune",
  "#aa8d6f": "sandal",
  "#ab917a": "sandrift",
  "#796d62": "sandstone",
  "#ecd540": "sandstorm",
  "#f5e7a2": "sandwisp",
  "#ffeac8": "sandy beach",
  "#f4a460": "sandy brown",
  "#92000a": "sangria",
  "#8d3d38": "sanguine brown",
  "#b16d52": "santa fe",
  "#9fa0b1": "santas gray",
  "#507d2a": "sap green",
  "#ded4a4": "sapling",
  "#0f52ba": "sapphire",
  "#0067a5": "sapphire blue",
  "#555b10": "saratoga",
  "#ff4681": "sasquatch socks",
  "#e6e4d4": "satin linen",
  "#cba135": "satin sheen gold",
  "#fff5f3": "sauvignon",
  "#fff4e0": "sazerac",
  "#675fa6": "scampi",
  "#cffaf4": "scandal",
  "#ff2400": "scarlet",
  "#431560": "scarlet gum",
  "#950015": "scarlett",
  "#585562": "scarpa flow",
  "#a9b497": "schist",
  "#ffd800": "school bus yellow",
  "#8b847e": "schooner",
  "#0066cc": "science blue",
  "#2ebfd4": "scooter",
  "#695f62": "scorpion",
  "#fffbdc": "scotch mist",
  "#66ff66": "screamin green",
  "#006994": "sea blue",
  "#fba129": "sea buckthorn",
  "#2e8b57": "sea green",
  "#c5dbca": "sea mist",
  "#78a39c": "sea nymph",
  "#ed989e": "sea pink",
  "#4bc7cf": "sea serpent",
  "#80ccea": "seagull",
  "#59260b": "seal brown",
  "#731e8f": "seance",
  "#fff5ee": "seashell",
  "#1b2f11": "seaweed",
  "#f0eefd": "selago",
  "#ffba00": "selective yellow",
  "#704214": "sepia",
  "#2b0202": "sepia black",
  "#9e5b40": "sepia skin",
  "#fff4e8": "serenade",
  "#8a795d": "shadow",
  "#778ba5": "shadow blue",
  "#9ac2b8": "shadow green",
  "#aaa5a9": "shady lady",
  "#4eabd1": "shakespeare",
  "#fbffba": "shalimar",
  "#ffcff1": "shampoo",
  "#33cc99": "shamrock",
  "#009e60": "shamrock green",
  "#25272c": "shark",
  "#8fd400": "sheen green",
  "#004950": "sherpa blue",
  "#02402c": "sherwood green",
  "#e8b9b3": "shilo",
  "#d98695": "shimmering blush",
  "#6b4e31": "shingle fawn",
  "#5fa778": "shiny shamrock",
  "#788bba": "ship cove",
  "#3e3a44": "ship gray",
  "#b20931": "shiraz",
  "#e292c0": "shocking",
  "#fc0fc0": "shocking pink",
  "#5f6672": "shuttle gray",
  "#646a54": "siam",
  "#f3e7bb": "sidecar",
  "#882d17": "sienna",
  "#bdb1a8": "silk",
  "#c0c0c0": "silver",
  "#acacac": "silver chalice",
  "#5d89ba": "silver lake blue",
  "#c4aead": "silver pink",
  "#bfc1c2": "silver sand",
  "#66b58f": "silver tree",
  "#9fd7d3": "sinbad",
  "#cb410b": "sinopia",
  "#7a013a": "siren",
  "#718080": "sirocco",
  "#d3cbba": "sisal",
  "#ff3855": "sizzling red",
  "#ffdb00": "sizzling sunrise",
  "#cae6da": "skeptic",
  "#007474": "skobeloff",
  "#87ceeb": "sky blue",
  "#cf71af": "sky magenta",
  "#6a5acd": "slate blue",
  "#708090": "slate gray",
  "#299617": "slimy green",
  "#003399": "smalt",
  "#51808f": "smalt blue",
  "#ff6d3a": "smashed pumpkin",
  "#c84186": "smitten",
  "#738276": "smoke",
  "#832a0d": "smokey topaz",
  "#605b73": "smoky",
  "#100c08": "smoky black",
  "#933d41": "smoky topaz",
  "#fffafa": "snow",
  "#f7faf7": "snow drift",
  "#e4ffd1": "snow flurry",
  "#d6ffdb": "snowy mint",
  "#e2d8ed": "snuff",
  "#cec8ef": "soap",
  "#fffbf9": "soapstone",
  "#d1c6b4": "soft amber",
  "#f5edef": "soft peach",
  "#893843": "solid pink",
  "#fef8e2": "solitaire",
  "#eaf6ff": "solitude",
  "#757575": "sonic silver",
  "#fd7c07": "sorbus",
  "#ceb98f": "sorrell brown",
  "#6a6051": "soya bean",
  "#1d2951": "space cadet",
  "#807532": "spanish bistre",
  "#0070b8": "spanish blue",
  "#d10047": "spanish carmine",
  "#e51a4c": "spanish crimson",
  "#989898": "spanish gray",
  "#009150": "spanish green",
  "#e86100": "spanish orange",
  "#f7bfbe": "spanish pink",
  "#e60026": "spanish red",
  "#00aae4": "spanish sky blue",
  "#4c2882": "spanish violet",
  "#007f5c": "spanish viridian",
  "#9e1316": "spartan crimson",
  "#2f5a57": "spectra",
  "#6a442e": "spice",
  "#8b5f4d": "spicy mix",
  "#74640d": "spicy mustard",
  "#816e71": "spicy pink",
  "#b6d1ea": "spindle",
  "#0fc0fc": "spiro disco ball",
  "#79deec": "spray",
  "#a7fc00": "spring bud",
  "#87ff2a": "spring frost",
  "#00ff7f": "spring green",
  "#578363": "spring leaves",
  "#accbb1": "spring rain",
  "#f6ffdc": "spring sun",
  "#f8f6f1": "spring wood",
  "#c1d7b0": "sprout",
  "#aaabb7": "spun pearl",
  "#8f8176": "squirrel",
  "#23297a": "st patricks blue",
  "#2d569b": "st tropaz",
  "#8a8f8a": "stack",
  "#007bb8": "star command blue",
  "#9f9f9c": "star dust",
  "#e5d7bd": "stark white",
  "#ecf245": "starship",
  "#4682b4": "steel blue",
  "#262335": "steel gray",
  "#cc33cc": "steel pink",
  "#5f8a8b": "steel teal",
  "#9c3336": "stiletto",
  "#928573": "stonewall",
  "#646463": "storm dust",
  "#717486": "storm gray",
  "#4f666a": "stormcloud",
  "#000741": "stratos",
  "#e4d96f": "straw",
  "#fc5a8d": "strawberry",
  "#956387": "strikemaster",
  "#325d52": "stromboli",
  "#714ab2": "studio",
  "#bac7c9": "submarine",
  "#f9fff6": "sugar cane",
  "#914e75": "sugar plum",
  "#c1f07c": "sulu",
  "#96bbab": "summer green",
  "#fbac13": "sun",
  "#ff404c": "sunburnt cyclops",
  "#c9b35b": "sundance",
  "#ffb1b3": "sundown",
  "#e4d422": "sunflower",
  "#e16865": "sunglo",
  "#ffcc33": "sunglow",
  "#f2f27a": "sunny",
  "#e3ab57": "sunray",
  "#fad6a5": "sunset",
  "#fd5e53": "sunset orange",
  "#ff9e2c": "sunshade",
  "#cf6ba9": "super pink",
  "#ffc901": "supernova",
  "#bbd7c1": "surf",
  "#cfe5d2": "surf crest",
  "#0c7a79": "surfie green",
  "#87ab39": "sushi",
  "#888387": "suva gray",
  "#001b1c": "swamp",
  "#acb78e": "swamp green",
  "#dcf0ea": "swans down",
  "#a83731": "sweet brown",
  "#fbea8c": "sweet corn",
  "#fd9fa2": "sweet pink",
  "#d3cdc5": "swirl",
  "#ddd6d5": "swiss coffee",
  "#908d39": "sycamore",
  "#a02712": "tabasco",
  "#edb381": "tacao",
  "#d6c562": "tacha",
  "#e97c07": "tahiti gold",
  "#eef0c8": "tahuna sands",
  "#b32d29": "tall poppy",
  "#a8a589": "tallow",
  "#991613": "tamarillo",
  "#341515": "tamarind",
  "#d2b48c": "tan",
  "#fa9d5a": "tan hide",
  "#d9dcc1": "tana",
  "#03163c": "tangaroa",
  "#f94d00": "tangelo",
  "#f28500": "tangerine",
  "#ffcc00": "tangerine yellow",
  "#ed7a1c": "tango",
  "#e4717a": "tango pink",
  "#7b7874": "tapa",
  "#b05e81": "tapestry",
  "#e1f6e8": "tara",
  "#073a50": "tarawera",
  "#fb4d46": "tart orange",
  "#cfdccf": "tasman",
  "#483c32": "taupe",
  "#8b8589": "taupe gray",
  "#692545": "tawny port",
  "#1e433c": "te papa green",
  "#c1bab0": "tea",
  "#d0f0c0": "tea green",
  "#f4c2c2": "tea rose",
  "#b19461": "teak",
  "#008080": "teal",
  "#367588": "teal blue",
  "#99e6b3": "teal deer",
  "#00827f": "teal green",
  "#cf3476": "telemagenta",
  "#3b000b": "temptress",
  "#cd5700": "tenne",
  "#ffe6c7": "tequila",
  "#e2725b": "terra cotta",
  "#f8f99c": "texas",
  "#ffb555": "texas rose",
  "#b69d98": "thatch",
  "#403d19": "thatch green",
  "#d8bfd8": "thistle",
  "#cccaa8": "thistle green",
  "#de6fa1": "thulian pink",
  "#33292f": "thunder",
  "#c02b18": "thunderbird",
  "#c1440e": "tia maria",
  "#c3d1d1": "tiara",
  "#063537": "tiber",
  "#fc89ac": "tickle me pink",
  "#f1ffad": "tidal",
  "#bfb8b0": "tide",
  "#0abab5": "tiffany blue",
  "#e08d3c": "tigers eye",
  "#16322c": "timber green",
  "#dbd7d2": "timberwolf",
  "#f0eeff": "titan white",
  "#eee600": "titanium yellow",
  "#9a6e61": "toast",
  "#715d47": "tobacco brown",
  "#3a0020": "toledo",
  "#1b0245": "tolopea",
  "#3f583b": "tom thumb",
  "#ff6347": "tomato",
  "#e79f8c": "tonys pink",
  "#746cc0": "toolbox",
  "#ffc87c": "topaz",
  "#0f2d9e": "torea bay",
  "#1450aa": "tory blue",
  "#8d3f3f": "tosca",
  "#991b07": "totem pole",
  "#a9bdbf": "tower gray",
  "#fd0e35": "tractor red",
  "#5fb3ac": "tradewind",
  "#e6ffff": "tranquil",
  "#fffde8": "travertine",
  "#fc9c1d": "tree poppy",
  "#3b2820": "treehouse",
  "#7c881a": "trendy green",
  "#8c6495": "trendy pink",
  "#e64e03": "trinidad",
  "#c3ddf9": "tropical blue",
  "#00755e": "tropical rain forest",
  "#cda4de": "tropical violet",
  "#4a4e5a": "trout",
  "#0073cf": "true blue",
  "#8a73d6": "true v",
  "#363534": "tuatara",
  "#ffddcd": "tuft bush",
  "#417dc1": "tufts blue",
  "#ff878d": "tulip",
  "#eab33b": "tulip tree",
  "#deaa88": "tumbleweed",
  "#353542": "tuna",
  "#4a4244": "tundora",
  "#fae600": "turbo",
  "#b57281": "turkish rose",
  "#cabb48": "turmeric",
  "#40e0d0": "turquoise",
  "#00ffef": "turquoise blue",
  "#a0d6b4": "turquoise green",
  "#2a380b": "turtle green",
  "#7c4848": "tuscan red",
  "#a67b5b": "tuscan tan",
  "#c09999": "tuscany",
  "#eef3c3": "tusk",
  "#c5994b": "tussock",
  "#fff1f9": "tutu",
  "#e4cfde": "twilight",
  "#eefdff": "twilight blue",
  "#8a496b": "twilight lavender",
  "#c2955d": "twine",
  "#66023c": "tyrian purple",
  "#0033aa": "ua blue",
  "#d9004c": "ua red",
  "#536895": "ucla blue",
  "#ffb300": "ucla gold",
  "#3cd070": "ufo green",
  "#014421": "up forest green",
  "#7b1113": "up maroon",
  "#004f98": "usafa blue",
  "#8878c3": "ube",
  "#ff6fff": "ultra pink",
  "#3f00ff": "ultramarine",
  "#4166f5": "ultramarine blue",
  "#635147": "umber",
  "#ffddca": "unbleached silk",
  "#f9e6f4": "underage pink",
  "#5b92e5": "united nations blue",
  "#b78727": "university of california gold",
  "#f77f00": "university of tennessee orange",
  "#ffff66": "unmellow yellow",
  "#ae2029": "upsdell red",
  "#e1ad21": "urobilin",
  "#d3003f": "utah crimson",
  "#d84437": "valencia",
  "#350e42": "valentino",
  "#2b194f": "valhalla",
  "#49170c": "van cleef",
  "#664228": "van dyke brown",
  "#f3e5ab": "vanilla",
  "#f38fa9": "vanilla ice",
  "#fff6df": "varden",
  "#c5b358": "vegas gold",
  "#c80815": "venetian red",
  "#055989": "venice blue",
  "#928590": "venus",
  "#43b3ae": "verdigris",
  "#495400": "verdun green",
  "#d9381e": "vermilion",
  "#a020f0": "veronica",
  "#74bbfb": "very light azure",
  "#6666ff": "very light blue",
  "#64e986": "very light malachite green",
  "#ffb077": "very light tangelo",
  "#ffdfbf": "very pale orange",
  "#ffffbf": "very pale yellow",
  "#b14a0b": "vesuvius",
  "#534491": "victoria",
  "#549019": "vida loca",
  "#64ccdb": "viking",
  "#983d61": "vin rouge",
  "#cb8fa9": "viola",
  "#290c5e": "violent violet",
  "#7f00ff": "violet",
  "#324ab2": "violet blue",
  "#991199": "violet eggplant",
  "#f75394": "violet red",
  "#40826d": "viridian",
  "#009698": "viridian green",
  "#ffefa1": "vis vis",
  "#7c9ed9": "vista blue",
  "#fcf8f7": "vista white",
  "#cc9900": "vivid amber",
  "#922724": "vivid auburn",
  "#9f1d35": "vivid burgundy",
  "#da1d81": "vivid cerise",
  "#00aaee": "vivid cerulean",
  "#cc0033": "vivid crimson",
  "#ff9900": "vivid gamboge",
  "#a6d608": "vivid lime green",
  "#00cc33": "vivid malachite",
  "#b80ce3": "vivid mulberry",
  "#ff5f00": "vivid orange",
  "#ffa000": "vivid orange peel",
  "#cc00ff": "vivid orchid",
  "#ff006c": "vivid raspberry",
  "#f70d1a": "vivid red",
  "#df6124": "vivid red tangelo",
  "#00ccff": "vivid sky blue",
  "#f07427": "vivid tangelo",
  "#ffa089": "vivid tangerine",
  "#e56024": "vivid vermilion",
  "#9f00ff": "vivid violet",
  "#ffe302": "vivid yellow",
  "#ceff00": "volt",
  "#533455": "voodoo",
  "#10121d": "vulcan",
  "#decbc6": "wafer",
  "#5a6e9c": "waikawa gray",
  "#363c0d": "waiouru",
  "#773f1a": "walnut",
  "#004242": "warm black",
  "#788a25": "wasabi",
  "#a1e9de": "water leaf",
  "#056f57": "watercourse",
  "#7b7c94": "waterloo ",
  "#a4f4f9": "waterspout",
  "#dcd747": "wattle",
  "#ffddcf": "watusi",
  "#ffc0a8": "wax flower",
  "#f7dbe6": "we peep",
  "#7fff00": "web chartreuse",
  "#ffa500": "web orange",
  "#4e7f9e": "wedgewood",
  "#7c98ab": "weldon blue",
  "#b43332": "well read",
  "#645452": "wenge",
  "#625119": "west coast",
  "#ff910f": "west side",
  "#dcd9d2": "westar",
  "#f19bab": "wewak",
  "#f5deb3": "wheat",
  "#f3edcf": "wheatfield",
  "#d59a6f": "whiskey",
  "#f7f5fa": "whisper",
  "#ffffff": "white",
  "#ddf9f1": "white ice",
  "#f8f7fc": "white lilac",
  "#f8f0e8": "white linen",
  "#fef8ff": "white pointer",
  "#eae8d4": "white rock",
  "#f5f5f5": "white smoke",
  "#a2add0": "wild blue yonder",
  "#d470a2": "wild orchid",
  "#ece090": "wild rice",
  "#f4f4f4": "wild sand",
  "#ff43a4": "wild strawberry",
  "#fc6c85": "wild watermelon",
  "#b9c46a": "wild willow",
  "#3a686c": "william",
  "#dfecda": "willow brook",
  "#65745d": "willow grove",
  "#fd5800": "willpower orange",
  "#3c0878": "windsor",
  "#a75502": "windsor tan",
  "#722f37": "wine",
  "#591d35": "wine berry",
  "#673147": "wine dregs",
  "#d5d195": "winter hazel",
  "#ff007c": "winter sky",
  "#a0e6ff": "winter wizard",
  "#56887d": "wintergreen dream",
  "#fef4f8": "wisp pink",
  "#c9a0dc": "wisteria",
  "#a4a6d3": "wistful",
  "#fffc99": "witch haze",
  "#261105": "wood bark",
  "#4d5328": "woodland",
  "#302a0f": "woodrush",
  "#0c0d0f": "woodsmoke",
  "#483131": "woody brown",
  "#006400": "x11 dark green",
  "#bebebe": "x11 gray",
  "#738678": "xanadu",
  "#0f4d92": "yale blue",
  "#1c2841": "yankees blue",
  "#ffff00": "yellow",
  "#9acd32": "yellow green",
  "#716338": "yellow metal",
  "#ffae42": "yellow orange",
  "#fff000": "yellow rose",
  "#fea904": "yellow sea",
  "#ffc3c0": "your pink",
  "#7b6608": "yukon gold",
  "#cec291": "yuma",
  "#0014a8": "zaffre",
  "#685558": "zambezi",
  "#daecd6": "zanah",
  "#e5841b": "zest",
  "#292319": "zeus",
  "#bfdbe2": "ziggurat",
  "#ebc2af": "zinnwaldite",
  "#2c1608": "zinnwaldite brown",
  "#f4f8ff": "zircon",
  "#e4d69b": "zombie",
  "#39a78e": "zomp",
  "#a59b91": "zorba",
  "#044022": "zuccini",
  "#edf6ff": "zumthor"
}