Migration from old pyutilz package name (which, in turn, came from
[pyutils.git] / src / pyutils / ansi.py
1 #!/usr/bin/env python3
2
3 # © Copyright 2021-2022, Scott Gasch
4
5 """A bunch of color names mapped into RGB tuples and some methods for
6 setting the text color, background, etc... using ANSI escape
7 sequences.
8 """
9
10 import contextlib
11 import difflib
12 import io
13 import logging
14 import re
15 import sys
16 from abc import abstractmethod
17 from typing import Any, Callable, Dict, Iterable, Literal, Optional, Tuple
18
19 from overrides import overrides
20
21 from pyutils import logging_utils, string_utils
22
23 logger = logging.getLogger(__name__)
24
25 # https://en.wikipedia.org/wiki/ANSI_escape_code
26
27
28 COLOR_NAMES_TO_RGB: Dict[str, Tuple[int, int, int]] = {
29     "abbey": (0x4C, 0x4F, 0x56),
30     "acadia": (0x1B, 0x14, 0x04),
31     "acapulco": (0x7C, 0xB0, 0xA1),
32     "aero blue": (0xC9, 0xFF, 0xE5),
33     "affair": (0x71, 0x46, 0x93),
34     "akaroa": (0xD4, 0xC4, 0xA8),
35     "alabaster": (0xFA, 0xFA, 0xFA),
36     "albescent white": (0xF5, 0xE9, 0xD3),
37     "algae green": (0x93, 0xDF, 0xB8),
38     "alice blue": (0xF0, 0xF8, 0xFF),
39     "alizarin crimson": (0xE3, 0x26, 0x36),
40     "allports": (0x00, 0x76, 0xA3),
41     "almond frost": (0x90, 0x7B, 0x71),
42     "almond": (0xEE, 0xD9, 0xC4),
43     "alpine": (0xAF, 0x8F, 0x2C),
44     "alto": (0xDB, 0xDB, 0xDB),
45     "aluminium": (0xA9, 0xAC, 0xB6),
46     "amaranth": (0xE5, 0x2B, 0x50),
47     "amazon": (0x3B, 0x7A, 0x57),
48     "amber": (0xFF, 0xBF, 0x00),
49     "americano": (0x87, 0x75, 0x6E),
50     "amethyst smoke": (0xA3, 0x97, 0xB4),
51     "amethyst": (0x99, 0x66, 0xCC),
52     "amour": (0xF9, 0xEA, 0xF3),
53     "amulet": (0x7B, 0x9F, 0x80),
54     "anakiwa": (0x9D, 0xE5, 0xFF),
55     "antique brass": (0xC8, 0x8A, 0x65),
56     "antique bronze": (0x70, 0x4A, 0x07),
57     "antique white": (0xFA, 0xEB, 0xD7),
58     "anzac": (0xE0, 0xB6, 0x46),
59     "apache": (0xDF, 0xBE, 0x6F),
60     "apple blossom": (0xAF, 0x4D, 0x43),
61     "apple green": (0xE2, 0xF3, 0xEC),
62     "apple": (0x4F, 0xA8, 0x3D),
63     "apricot peach": (0xFB, 0xCE, 0xB1),
64     "apricot white": (0xFF, 0xFE, 0xEC),
65     "apricot": (0xEB, 0x93, 0x73),
66     "aqua deep": (0x01, 0x4B, 0x43),
67     "aqua forest": (0x5F, 0xA7, 0x77),
68     "aqua haze": (0xED, 0xF5, 0xF5),
69     "aqua island": (0xA1, 0xDA, 0xD7),
70     "aqua spring": (0xEA, 0xF9, 0xF5),
71     "aqua squeeze": (0xE8, 0xF5, 0xF2),
72     "aqua": (0x00, 0xFF, 0xFF),
73     "aquamarine blue": (0x71, 0xD9, 0xE2),
74     "aquamarine": (0x7F, 0xFF, 0xD4),
75     "arapawa": (0x11, 0x0C, 0x6C),
76     "armadillo": (0x43, 0x3E, 0x37),
77     "arrowtown": (0x94, 0x87, 0x71),
78     "ash": (0xC6, 0xC3, 0xB5),
79     "asparagus": (0x7B, 0xA0, 0x5B),
80     "asphalt": (0x13, 0x0A, 0x06),
81     "astra": (0xFA, 0xEA, 0xB9),
82     "astral": (0x32, 0x7D, 0xA0),
83     "astronaut blue": (0x01, 0x3E, 0x62),
84     "astronaut": (0x28, 0x3A, 0x77),
85     "athens gray": (0xEE, 0xF0, 0xF3),
86     "aths special": (0xEC, 0xEB, 0xCE),
87     "atlantis": (0x97, 0xCD, 0x2D),
88     "atoll": (0x0A, 0x6F, 0x75),
89     "atomic tangerine": (0xFF, 0x99, 0x66),
90     "au chico": (0x97, 0x60, 0x5D),
91     "aubergine": (0x3B, 0x09, 0x10),
92     "australian mint": (0xF5, 0xFF, 0xBE),
93     "avocado": (0x88, 0x8D, 0x65),
94     "axolotl": (0x4E, 0x66, 0x49),
95     "azalea": (0xF7, 0xC8, 0xDA),
96     "aztec": (0x0D, 0x1C, 0x19),
97     "azure radiance": (0x00, 0x7F, 0xFF),
98     "azure": (0xF0, 0xFF, 0xFF),
99     "baby blue": (0xE0, 0xFF, 0xFF),
100     "backup.house": (175, 95, 0),
101     "bahama blue": (0x02, 0x63, 0x95),
102     "bahia": (0xA5, 0xCB, 0x0C),
103     "baja white": (0xFF, 0xF8, 0xD1),
104     "bali hai": (0x85, 0x9F, 0xAF),
105     "baltic sea": (0x2A, 0x26, 0x30),
106     "bamboo": (0xDA, 0x63, 0x04),
107     "banana mania": (0xFB, 0xE7, 0xB2),
108     "bandicoot": (0x85, 0x84, 0x70),
109     "barberry": (0xDE, 0xD7, 0x17),
110     "barley corn": (0xA6, 0x8B, 0x5B),
111     "barley white": (0xFF, 0xF4, 0xCE),
112     "barossa": (0x44, 0x01, 0x2D),
113     "bastille": (0x29, 0x21, 0x30),
114     "battleship gray": (0x82, 0x8F, 0x72),
115     "bay leaf": (0x7D, 0xA9, 0x8D),
116     "bay of many": (0x27, 0x3A, 0x81),
117     "bazaar": (0x98, 0x77, 0x7B),
118     "bean  ": (0x3D, 0x0C, 0x02),
119     "beauty bush": (0xEE, 0xC1, 0xBE),
120     "beaver": (0x92, 0x6F, 0x5B),
121     "beeswax": (0xFE, 0xF2, 0xC7),
122     "beige": (0xF5, 0xF5, 0xDC),
123     "bermuda gray": (0x6B, 0x8B, 0xA2),
124     "bermuda": (0x7D, 0xD8, 0xC6),
125     "beryl green": (0xDE, 0xE5, 0xC0),
126     "bianca": (0xFC, 0xFB, 0xF3),
127     "big stone": (0x16, 0x2A, 0x40),
128     "bilbao": (0x32, 0x7C, 0x14),
129     "biloba flower": (0xB2, 0xA1, 0xEA),
130     "birch": (0x37, 0x30, 0x21),
131     "bird flower": (0xD4, 0xCD, 0x16),
132     "biscay": (0x1B, 0x31, 0x62),
133     "bismark": (0x49, 0x71, 0x83),
134     "bison hide": (0xC1, 0xB7, 0xA4),
135     "bisque": (0xFF, 0xE4, 0xC4),
136     "bistre": (0x3D, 0x2B, 0x1F),
137     "bitter lemon": (0xCA, 0xE0, 0x0D),
138     "bitter": (0x86, 0x89, 0x74),
139     "bittersweet": (0xFE, 0x6F, 0x5E),
140     "bizarre": (0xEE, 0xDE, 0xDA),
141     "black bean": (0x08, 0x19, 0x10),
142     "black forest": (0x0B, 0x13, 0x04),
143     "black haze": (0xF6, 0xF7, 0xF7),
144     "black marlin": (0x3E, 0x2C, 0x1C),
145     "black olive": (0x24, 0x2E, 0x16),
146     "black pearl": (0x04, 0x13, 0x22),
147     "black rock": (0x0D, 0x03, 0x32),
148     "black rose": (0x67, 0x03, 0x2D),
149     "black russian": (0x0A, 0x00, 0x1C),
150     "black squeeze": (0xF2, 0xFA, 0xFA),
151     "black white": (0xFF, 0xFE, 0xF6),
152     "black": (0x00, 0x00, 0x00),
153     "blackberry": (0x4D, 0x01, 0x35),
154     "blackcurrant": (0x32, 0x29, 0x3A),
155     "blanched almond": (0xFF, 0xEB, 0xCD),
156     "blaze orange": (0xFF, 0x66, 0x00),
157     "bleach white": (0xFE, 0xF3, 0xD8),
158     "bleached cedar": (0x2C, 0x21, 0x33),
159     "blizzard blue": (0xA3, 0xE3, 0xED),
160     "blossom": (0xDC, 0xB4, 0xBC),
161     "blue bayoux": (0x49, 0x66, 0x79),
162     "blue bell": (0x99, 0x99, 0xCC),
163     "blue chalk": (0xF1, 0xE9, 0xFF),
164     "blue charcoal": (0x01, 0x0D, 0x1A),
165     "blue chill": (0x0C, 0x89, 0x90),
166     "blue diamond": (0x38, 0x04, 0x74),
167     "blue dianne": (0x20, 0x48, 0x52),
168     "blue gem": (0x2C, 0x0E, 0x8C),
169     "blue haze": (0xBF, 0xBE, 0xD8),
170     "blue lagoon": (0x01, 0x79, 0x87),
171     "blue marguerite": (0x76, 0x66, 0xC6),
172     "blue ribbon": (0x00, 0x66, 0xFF),
173     "blue romance": (0xD2, 0xF6, 0xDE),
174     "blue smoke": (0x74, 0x88, 0x81),
175     "blue stone": (0x01, 0x61, 0x62),
176     "blue violet": (0x8A, 0x2B, 0xE2),
177     "blue whale": (0x04, 0x2E, 0x4C),
178     "blue zodiac": (0x13, 0x26, 0x4D),
179     "blue": (0x00, 0x00, 0xFF),
180     "blumine": (0x18, 0x58, 0x7A),
181     "blush pink": (0xFF, 0x6F, 0xFF),
182     "blush": (0xB4, 0x46, 0x68),
183     "bombay": (0xAF, 0xB1, 0xB8),
184     "bon jour": (0xE5, 0xE0, 0xE1),
185     "bondi blue": (0x00, 0x95, 0xB6),
186     "bone": (0xE4, 0xD1, 0xC0),
187     "bordeaux": (0x5C, 0x01, 0x20),
188     "bossanova": (0x4E, 0x2A, 0x5A),
189     "boston blue": (0x3B, 0x91, 0xB4),
190     "botticelli": (0xC7, 0xDD, 0xE5),
191     "bottle green": (0x09, 0x36, 0x24),
192     "boulder": (0x7A, 0x7A, 0x7A),
193     "bouquet": (0xAE, 0x80, 0x9E),
194     "bourbon": (0xBA, 0x6F, 0x1E),
195     "bracken": (0x4A, 0x2A, 0x04),
196     "brandy punch": (0xCD, 0x84, 0x29),
197     "brandy rose": (0xBB, 0x89, 0x83),
198     "brandy": (0xDE, 0xC1, 0x96),
199     "breaker bay": (0x5D, 0xA1, 0x9F),
200     "brick red": (0xC6, 0x2D, 0x42),
201     "bridal heath": (0xFF, 0xFA, 0xF4),
202     "bridesmaid": (0xFE, 0xF0, 0xEC),
203     "bright gray": (0x3C, 0x41, 0x51),
204     "bright green": (0x66, 0xFF, 0x00),
205     "bright red": (0xB1, 0x00, 0x00),
206     "bright sun": (0xFE, 0xD3, 0x3C),
207     "bright turquoise": (0x08, 0xE8, 0xDE),
208     "brilliant rose": (0xF6, 0x53, 0xA6),
209     "brink pink": (0xFB, 0x60, 0x7F),
210     "bronco": (0xAB, 0xA1, 0x96),
211     "bronze olive": (0x4E, 0x42, 0x0C),
212     "bronze": (0x3F, 0x21, 0x09),
213     "bronzetone": (0x4D, 0x40, 0x0F),
214     "broom": (0xFF, 0xEC, 0x13),
215     "brown bramble": (0x59, 0x28, 0x04),
216     "brown derby": (0x49, 0x26, 0x15),
217     "brown pod": (0x40, 0x18, 0x01),
218     "brown rust": (0xAF, 0x59, 0x3E),
219     "brown tumbleweed": (0x37, 0x29, 0x0E),
220     "brown": (0x96, 0x4B, 0x00),
221     "bubbles": (0xE7, 0xFE, 0xFF),
222     "buccaneer": (0x62, 0x2F, 0x30),
223     "bud": (0xA8, 0xAE, 0x9C),
224     "buddha gold": (0xC1, 0xA0, 0x04),
225     "buff": (0xF0, 0xDC, 0x82),
226     "bulgarian rose": (0x48, 0x06, 0x07),
227     "bull shot": (0x86, 0x4D, 0x1E),
228     "bunker": (0x0D, 0x11, 0x17),
229     "bunting": (0x15, 0x1F, 0x4C),
230     "burgundy": (0x90, 0x00, 0x20),
231     "burlywood": (0xDE, 0xB8, 0x87),
232     "burnham": (0x00, 0x2E, 0x20),
233     "burning orange": (0xFF, 0x70, 0x34),
234     "burning sand": (0xD9, 0x93, 0x76),
235     "burnt maroon": (0x42, 0x03, 0x03),
236     "burnt orange": (0xCC, 0x55, 0x00),
237     "burnt sienna": (0xE9, 0x74, 0x51),
238     "burnt umber": (0x8A, 0x33, 0x24),
239     "bush": (0x0D, 0x2E, 0x1C),
240     "buttercup": (0xF3, 0xAD, 0x16),
241     "buttered rum": (0xA1, 0x75, 0x0D),
242     "butterfly bush": (0x62, 0x4E, 0x9A),
243     "buttermilk": (0xFF, 0xF1, 0xB5),
244     "buttery white": (0xFF, 0xFC, 0xEA),
245     "cab sav": (0x4D, 0x0A, 0x18),
246     "cabaret": (0xD9, 0x49, 0x72),
247     "cabbage pont": (0x3F, 0x4C, 0x3A),
248     "cactus": (0x58, 0x71, 0x56),
249     "cadet blue": (0x5F, 0x9E, 0xA0),
250     "cadillac": (0xB0, 0x4C, 0x6A),
251     "cafe royale": (0x6F, 0x44, 0x0C),
252     "calico": (0xE0, 0xC0, 0x95),
253     "california": (0xFE, 0x9D, 0x04),
254     "calypso": (0x31, 0x72, 0x8D),
255     "camarone": (0x00, 0x58, 0x1A),
256     "camelot": (0x89, 0x34, 0x56),
257     "cameo": (0xD9, 0xB9, 0x9B),
258     "camouflage green": (0x78, 0x86, 0x6B),
259     "camouflage": (0x3C, 0x39, 0x10),
260     "can can": (0xD5, 0x91, 0xA4),
261     "canary": (0xF3, 0xFB, 0x62),
262     "candlelight": (0xFC, 0xD9, 0x17),
263     "candy corn": (0xFB, 0xEC, 0x5D),
264     "cannon black": (0x25, 0x17, 0x06),
265     "cannon pink": (0x89, 0x43, 0x67),
266     "cape cod": (0x3C, 0x44, 0x43),
267     "cape honey": (0xFE, 0xE5, 0xAC),
268     "cape palliser": (0xA2, 0x66, 0x45),
269     "caper": (0xDC, 0xED, 0xB4),
270     "caramel": (0xFF, 0xDD, 0xAF),
271     "cararra": (0xEE, 0xEE, 0xE8),
272     "cardin green": (0x01, 0x36, 0x1C),
273     "cardinal pink": (0x8C, 0x05, 0x5E),
274     "cardinal": (0xC4, 0x1E, 0x3A),
275     "careys pink": (0xD2, 0x9E, 0xAA),
276     "caribbean green": (0x00, 0xCC, 0x99),
277     "carissma": (0xEA, 0x88, 0xA8),
278     "carla": (0xF3, 0xFF, 0xD8),
279     "carmine": (0x96, 0x00, 0x18),
280     "carnaby tan": (0x5C, 0x2E, 0x01),
281     "carnation pink": (0xFF, 0xA6, 0xC9),
282     "carnation": (0xF9, 0x5A, 0x61),
283     "carousel pink": (0xF9, 0xE0, 0xED),
284     "carrot orange": (0xED, 0x91, 0x21),
285     "casablanca": (0xF8, 0xB8, 0x53),
286     "casal": (0x2F, 0x61, 0x68),
287     "cascade": (0x8B, 0xA9, 0xA5),
288     "cashmere": (0xE6, 0xBE, 0xA5),
289     "casper": (0xAD, 0xBE, 0xD1),
290     "castro": (0x52, 0x00, 0x1F),
291     "catalina blue": (0x06, 0x2A, 0x78),
292     "catskill white": (0xEE, 0xF6, 0xF7),
293     "cavern pink": (0xE3, 0xBE, 0xBE),
294     "cedar wood finish": (0x71, 0x1A, 0x00),
295     "cedar": (0x3E, 0x1C, 0x14),
296     "celadon": (0xAC, 0xE1, 0xAF),
297     "celery": (0xB8, 0xC2, 0x5D),
298     "celeste": (0xD1, 0xD2, 0xCA),
299     "cello": (0x1E, 0x38, 0x5B),
300     "celtic": (0x16, 0x32, 0x22),
301     "cement": (0x8D, 0x76, 0x62),
302     "ceramic": (0xFC, 0xFF, 0xF9),
303     "cerise red": (0xDE, 0x31, 0x63),
304     "cerise": (0xDA, 0x32, 0x87),
305     "cerulean blue": (0x2A, 0x52, 0xBE),
306     "cerulean": (0x02, 0xA4, 0xD3),
307     "chablis": (0xFF, 0xF4, 0xF3),
308     "chalet green": (0x51, 0x6E, 0x3D),
309     "chalky": (0xEE, 0xD7, 0x94),
310     "chambray": (0x35, 0x4E, 0x8C),
311     "chamois": (0xED, 0xDC, 0xB1),
312     "champagne": (0xFA, 0xEC, 0xCC),
313     "chantilly": (0xF8, 0xC3, 0xDF),
314     "charade": (0x29, 0x29, 0x37),
315     "chardon": (0xFF, 0xF3, 0xF1),
316     "chardonnay": (0xFF, 0xCD, 0x8C),
317     "charlotte": (0xBA, 0xEE, 0xF9),
318     "charm": (0xD4, 0x74, 0x94),
319     "chartreuse yellow": (0xDF, 0xFF, 0x00),
320     "chartreuse": (0x7F, 0xFF, 0x00),
321     "chateau green": (0x40, 0xA8, 0x60),
322     "chatelle": (0xBD, 0xB3, 0xC7),
323     "chathams blue": (0x17, 0x55, 0x79),
324     "cheetah.house": (95, 0x00, 0x00),
325     "chelsea cucumber": (0x83, 0xAA, 0x5D),
326     "chelsea gem": (0x9E, 0x53, 0x02),
327     "chenin": (0xDF, 0xCD, 0x6F),
328     "cherokee": (0xFC, 0xDA, 0x98),
329     "cherry pie": (0x2A, 0x03, 0x59),
330     "cherrywood": (0x65, 0x1A, 0x14),
331     "cherub": (0xF8, 0xD9, 0xE9),
332     "chestnut rose": (0xCD, 0x5C, 0x5C),
333     "chestnut": (0xB9, 0x4E, 0x48),
334     "chetwode blue": (0x85, 0x81, 0xD9),
335     "chicago": (0x5D, 0x5C, 0x58),
336     "chiffon": (0xF1, 0xFF, 0xC8),
337     "chilean fire": (0xF7, 0x77, 0x03),
338     "chilean heath": (0xFF, 0xFD, 0xE6),
339     "china ivory": (0xFC, 0xFF, 0xE7),
340     "chino": (0xCE, 0xC7, 0xA7),
341     "chinook": (0xA8, 0xE3, 0xBD),
342     "chocolate": (0x37, 0x02, 0x02),
343     "christalle": (0x33, 0x03, 0x6B),
344     "christi": (0x67, 0xA7, 0x12),
345     "christine": (0xE7, 0x73, 0x0A),
346     "chrome white": (0xE8, 0xF1, 0xD4),
347     "cinder": (0x0E, 0x0E, 0x18),
348     "cinderella": (0xFD, 0xE1, 0xDC),
349     "cinnabar": (0xE3, 0x42, 0x34),
350     "cinnamon": (0x7B, 0x3F, 0x00),
351     "cioccolato": (0x55, 0x28, 0x0C),
352     "citrine white": (0xFA, 0xF7, 0xD6),
353     "citron": (0x9E, 0xA9, 0x1F),
354     "citrus": (0xA1, 0xC5, 0x0A),
355     "clairvoyant": (0x48, 0x06, 0x56),
356     "clam shell": (0xD4, 0xB6, 0xAF),
357     "claret": (0x7F, 0x17, 0x34),
358     "classic rose": (0xFB, 0xCC, 0xE7),
359     "clay ash": (0xBD, 0xC8, 0xB3),
360     "clay creek": (0x8A, 0x83, 0x60),
361     "clear day": (0xE9, 0xFF, 0xFD),
362     "clementine": (0xE9, 0x6E, 0x00),
363     "clinker": (0x37, 0x1D, 0x09),
364     "cloud burst": (0x20, 0x2E, 0x54),
365     "cloud": (0xC7, 0xC4, 0xBF),
366     "cloudy": (0xAC, 0xA5, 0x9F),
367     "clover": (0x38, 0x49, 0x10),
368     "cobalt": (0x00, 0x47, 0xAB),
369     "cocoa bean": (0x48, 0x1C, 0x1C),
370     "cocoa brown": (0x30, 0x1F, 0x1E),
371     "coconut cream": (0xF8, 0xF7, 0xDC),
372     "cod gray": (0x0B, 0x0B, 0x0B),
373     "coffee bean": (0x2A, 0x14, 0x0E),
374     "coffee": (0x70, 0x65, 0x55),
375     "cognac": (0x9F, 0x38, 0x1D),
376     "cola": (0x3F, 0x25, 0x00),
377     "cold purple": (0xAB, 0xA0, 0xD9),
378     "cold turkey": (0xCE, 0xBA, 0xBA),
379     "colonial white": (0xFF, 0xED, 0xBC),
380     "comet": (0x5C, 0x5D, 0x75),
381     "como": (0x51, 0x7C, 0x66),
382     "conch": (0xC9, 0xD9, 0xD2),
383     "concord": (0x7C, 0x7B, 0x7A),
384     "concrete": (0xF2, 0xF2, 0xF2),
385     "confetti": (0xE9, 0xD7, 0x5A),
386     "congo brown": (0x59, 0x37, 0x37),
387     "congress blue": (0x02, 0x47, 0x8E),
388     "conifer": (0xAC, 0xDD, 0x4D),
389     "contessa": (0xC6, 0x72, 0x6B),
390     "copper canyon": (0x7E, 0x3A, 0x15),
391     "copper rose": (0x99, 0x66, 0x66),
392     "copper rust": (0x94, 0x47, 0x47),
393     "copper": (0xB8, 0x73, 0x33),
394     "copperfield": (0xDA, 0x8A, 0x67),
395     "coral red": (0xFF, 0x40, 0x40),
396     "coral reef": (0xC7, 0xBC, 0xA2),
397     "coral tree": (0xA8, 0x6B, 0x6B),
398     "coral": (0xFF, 0x7F, 0x50),
399     "corduroy": (0x60, 0x6E, 0x68),
400     "coriander": (0xC4, 0xD0, 0xB0),
401     "cork": (0x40, 0x29, 0x1D),
402     "corn field": (0xF8, 0xFA, 0xCD),
403     "corn harvest": (0x8B, 0x6B, 0x0B),
404     "corn silk": (0xFF, 0xF8, 0xDC),
405     "corn": (0xE7, 0xBF, 0x05),
406     "cornflower blue": (0x64, 0x95, 0xED),
407     "cornflower lilac": (0xFF, 0xB0, 0xAC),
408     "cornflower": (0x93, 0xCC, 0xEA),
409     "corvette": (0xFA, 0xD3, 0xA2),
410     "cosmic": (0x76, 0x39, 0x5D),
411     "cosmos": (0xFF, 0xD8, 0xD9),
412     "costa del sol": (0x61, 0x5D, 0x30),
413     "cotton candy": (0xFF, 0xB7, 0xD5),
414     "cotton seed": (0xC2, 0xBD, 0xB6),
415     "county green": (0x01, 0x37, 0x1A),
416     "cowboy": (0x4D, 0x28, 0x2D),
417     "crail": (0xB9, 0x51, 0x40),
418     "cranberry": (0xDB, 0x50, 0x79),
419     "crater brown": (0x46, 0x24, 0x25),
420     "cream brulee": (0xFF, 0xE5, 0xA0),
421     "cream can": (0xF5, 0xC8, 0x5C),
422     "cream": (0xFF, 0xFD, 0xD0),
423     "creole": (0x1E, 0x0F, 0x04),
424     "crete": (0x73, 0x78, 0x29),
425     "crimson": (0xDC, 0x14, 0x3C),
426     "crocodile": (0x73, 0x6D, 0x58),
427     "crown of thorns": (0x77, 0x1F, 0x1F),
428     "crowshead": (0x1C, 0x12, 0x08),
429     "cruise": (0xB5, 0xEC, 0xDF),
430     "crusoe": (0x00, 0x48, 0x16),
431     "crusta": (0xFD, 0x7B, 0x33),
432     "cumin": (0x92, 0x43, 0x21),
433     "cumulus": (0xFD, 0xFF, 0xD5),
434     "cupid": (0xFB, 0xBE, 0xDA),
435     "curious blue": (0x25, 0x96, 0xD1),
436     "cutty sark": (0x50, 0x76, 0x72),
437     "cyan": (0x00, 0xFF, 0xFF),
438     "cyprus": (0x00, 0x3E, 0x40),
439     "daintree": (0x01, 0x27, 0x31),
440     "dairy cream": (0xF9, 0xE4, 0xBC),
441     "daisy bush": (0x4F, 0x23, 0x98),
442     "dallas": (0x6E, 0x4B, 0x26),
443     "dandelion": (0xFE, 0xD8, 0x5D),
444     "danube": (0x60, 0x93, 0xD1),
445     "dark blue": (0x00, 0x00, 0x8B),
446     "dark burgundy": (0x77, 0x0F, 0x05),
447     "dark cyan": (0x00, 0x8B, 0x8B),
448     "dark ebony": (0x3C, 0x20, 0x05),
449     "dark fern": (0x0A, 0x48, 0x0D),
450     "dark goldenrod": (0xB8, 0x86, 0x0B),
451     "dark gray": (0xA9, 0xA9, 0xA9),
452     "dark green": (0x18, 0x2D, 0x09),
453     "dark magenta": (0xAF, 0x00, 0xAF),
454     "dark olive green": (0x55, 0x6B, 0x2F),
455     "dark orange": (0xFF, 0x8C, 0x00),
456     "dark orchid": (0x99, 0x32, 0xCC),
457     "dark purple": (0x36, 0x00, 0x79),
458     "dark red": (0x64, 0x00, 0x00),
459     "dark salmon": (0xE9, 0x96, 0x7A),
460     "dark sea green": (0x8F, 0xBC, 0x8F),
461     "dark slate gray": (0x2F, 0x4F, 0x4F),
462     "dark tan": (0x66, 0x10, 0x10),
463     "dark turquoise": (0x00, 0xCE, 0xD1),
464     "dark violet": (0x94, 0x00, 0xD3),
465     "dawn pink": (0xF3, 0xE9, 0xE5),
466     "dawn": (0xA6, 0xA2, 0x9A),
467     "de york": (0x7A, 0xC4, 0x88),
468     "deco": (0xD2, 0xDA, 0x97),
469     "deep blue": (0x22, 0x08, 0x78),
470     "deep blush": (0xE4, 0x76, 0x98),
471     "deep bronze": (0x4A, 0x30, 0x04),
472     "deep cerulean": (0x00, 0x7B, 0xA7),
473     "deep cove": (0x05, 0x10, 0x40),
474     "deep fir": (0x00, 0x29, 0x00),
475     "deep forest green": (0x18, 0x2D, 0x09),
476     "deep koamaru": (0x1B, 0x12, 0x7B),
477     "deep oak": (0x41, 0x20, 0x10),
478     "deep pink": (0xFF, 0x14, 0x93),
479     "deep sapphire": (0x08, 0x25, 0x67),
480     "deep sea green": (0x09, 0x58, 0x59),
481     "deep sea": (0x01, 0x82, 0x6B),
482     "deep sky blue": (0x00, 0xBF, 0xFF),
483     "deep teal": (0x00, 0x35, 0x32),
484     "del rio": (0xB0, 0x9A, 0x95),
485     "dell": (0x39, 0x64, 0x13),
486     "delta": (0xA4, 0xA4, 0x9D),
487     "deluge": (0x75, 0x63, 0xA8),
488     "denim": (0x15, 0x60, 0xBD),
489     "derby": (0xFF, 0xEE, 0xD8),
490     "desert sand": (0xED, 0xC9, 0xAF),
491     "desert storm": (0xF8, 0xF8, 0xF7),
492     "desert": (0xAE, 0x60, 0x20),
493     "dew": (0xEA, 0xFF, 0xFE),
494     "di serria": (0xDB, 0x99, 0x5E),
495     "diesel": (0x13, 0x00, 0x00),
496     "dim gray": (0x69, 0x69, 0x69),
497     "dingley": (0x5D, 0x77, 0x47),
498     "disco": (0x87, 0x15, 0x50),
499     "dixie": (0xE2, 0x94, 0x18),
500     "dodger blue": (0x1E, 0x90, 0xFF),
501     "dolly": (0xF9, 0xFF, 0x8B),
502     "dolphin": (0x64, 0x60, 0x77),
503     "domino": (0x8E, 0x77, 0x5E),
504     "don juan": (0x5D, 0x4C, 0x51),
505     "donkey brown": (0xA6, 0x92, 0x79),
506     "dorado": (0x6B, 0x57, 0x55),
507     "double colonial white": (0xEE, 0xE3, 0xAD),
508     "double pearl lusta": (0xFC, 0xF4, 0xD0),
509     "double spanish white": (0xE6, 0xD7, 0xB9),
510     "dove gray": (0x6D, 0x6C, 0x6C),
511     "downriver": (0x09, 0x22, 0x56),
512     "downy": (0x6F, 0xD0, 0xC5),
513     "driftwood": (0xAF, 0x87, 0x51),
514     "drover": (0xFD, 0xF7, 0xAD),
515     "dull lavender": (0xA8, 0x99, 0xE6),
516     "dune": (0x38, 0x35, 0x33),
517     "dust storm": (0xE5, 0xCC, 0xC9),
518     "dusty gray": (0xA8, 0x98, 0x9B),
519     "eagle": (0xB6, 0xBA, 0xA4),
520     "earls green": (0xC9, 0xB9, 0x3B),
521     "early dawn": (0xFF, 0xF9, 0xE6),
522     "east bay": (0x41, 0x4C, 0x7D),
523     "east side": (0xAC, 0x91, 0xCE),
524     "eastern blue": (0x1E, 0x9A, 0xB0),
525     "ebb": (0xE9, 0xE3, 0xE3),
526     "ebony clay": (0x26, 0x28, 0x3B),
527     "ebony": (0x0C, 0x0B, 0x1D),
528     "eclipse": (0x31, 0x1C, 0x17),
529     "ecru white": (0xF5, 0xF3, 0xE5),
530     "ecstasy": (0xFA, 0x78, 0x14),
531     "eden": (0x10, 0x58, 0x52),
532     "edgewater": (0xC8, 0xE3, 0xD7),
533     "edward": (0xA2, 0xAE, 0xAB),
534     "egg sour": (0xFF, 0xF4, 0xDD),
535     "egg white": (0xFF, 0xEF, 0xC1),
536     "eggplant": (0x61, 0x40, 0x51),
537     "el paso": (0x1E, 0x17, 0x08),
538     "el salva": (0x8F, 0x3E, 0x33),
539     "electric lime": (0xCC, 0xFF, 0x00),
540     "electric violet": (0x8B, 0x00, 0xFF),
541     "elephant": (0x12, 0x34, 0x47),
542     "elf green": (0x08, 0x83, 0x70),
543     "elm": (0x1C, 0x7C, 0x7D),
544     "emerald": (0x50, 0xC8, 0x78),
545     "eminence": (0x6C, 0x30, 0x82),
546     "emperor": (0x51, 0x46, 0x49),
547     "empress": (0x81, 0x73, 0x77),
548     "endeavour": (0x00, 0x56, 0xA7),
549     "energy yellow": (0xF8, 0xDD, 0x5C),
550     "english holly": (0x02, 0x2D, 0x15),
551     "english walnut": (0x3E, 0x2B, 0x23),
552     "envy": (0x8B, 0xA6, 0x90),
553     "equator": (0xE1, 0xBC, 0x64),
554     "espresso": (0x61, 0x27, 0x18),
555     "eternity": (0x21, 0x1A, 0x0E),
556     "eucalyptus": (0x27, 0x8A, 0x5B),
557     "eunry": (0xCF, 0xA3, 0x9D),
558     "evening sea": (0x02, 0x4E, 0x46),
559     "everglade": (0x1C, 0x40, 0x2E),
560     "faded jade": (0x42, 0x79, 0x77),
561     "fair pink": (0xFF, 0xEF, 0xEC),
562     "falcon": (0x7F, 0x62, 0x6D),
563     "fall green": (0xEC, 0xEB, 0xBD),
564     "falu red": (0x80, 0x18, 0x18),
565     "fantasy": (0xFA, 0xF3, 0xF0),
566     "fedora": (0x79, 0x6A, 0x78),
567     "feijoa": (0x9F, 0xDD, 0x8C),
568     "fern frond": (0x65, 0x72, 0x20),
569     "fern green": (0x4F, 0x79, 0x42),
570     "fern": (0x63, 0xB7, 0x6C),
571     "ferra": (0x70, 0x4F, 0x50),
572     "festival": (0xFB, 0xE9, 0x6C),
573     "feta": (0xF0, 0xFC, 0xEA),
574     "fiery orange": (0xB3, 0x52, 0x13),
575     "finch": (0x62, 0x66, 0x49),
576     "finlandia": (0x55, 0x6D, 0x56),
577     "finn": (0x69, 0x2D, 0x54),
578     "fiord": (0x40, 0x51, 0x69),
579     "fire brick": (0xB2, 0x22, 0x22),
580     "fire bush": (0xE8, 0x99, 0x28),
581     "fire": (0xAA, 0x42, 0x03),
582     "firefly": (0x0E, 0x2A, 0x30),
583     "flame pea": (0xDA, 0x5B, 0x38),
584     "flamenco": (0xFF, 0x7D, 0x07),
585     "flamingo": (0xF2, 0x55, 0x2A),
586     "flax smoke": (0x7B, 0x82, 0x65),
587     "flax": (0xEE, 0xDC, 0x82),
588     "flesh": (0xFF, 0xCB, 0xA4),
589     "flint": (0x6F, 0x6A, 0x61),
590     "flirt": (0xA2, 0x00, 0x6D),
591     "floral white": (0xFF, 0xFA, 0xF0),
592     "flush mahogany": (0xCA, 0x34, 0x35),
593     "flush orange": (0xFF, 0x7F, 0x00),
594     "foam": (0xD8, 0xFC, 0xFA),
595     "fog": (0xD7, 0xD0, 0xFF),
596     "foggy gray": (0xCB, 0xCA, 0xB6),
597     "forest green": (0x22, 0x8B, 0x22),
598     "forget me not": (0xFF, 0xF1, 0xEE),
599     "fountain blue": (0x56, 0xB4, 0xBE),
600     "frangipani": (0xFF, 0xDE, 0xB3),
601     "french gray": (0xBD, 0xBD, 0xC6),
602     "french lilac": (0xEC, 0xC7, 0xEE),
603     "french pass": (0xBD, 0xED, 0xFD),
604     "french rose": (0xF6, 0x4A, 0x8A),
605     "fresh eggplant": (0x99, 0x00, 0x66),
606     "friar gray": (0x80, 0x7E, 0x79),
607     "fringy flower": (0xB1, 0xE2, 0xC1),
608     "froly": (0xF5, 0x75, 0x84),
609     "frost": (0xED, 0xF5, 0xDD),
610     "frosted mint": (0xDB, 0xFF, 0xF8),
611     "frostee": (0xE4, 0xF6, 0xE7),
612     "fruit salad": (0x4F, 0x9D, 0x5D),
613     "fuchsia blue": (0x7A, 0x58, 0xC1),
614     "fuchsia pink": (0xC1, 0x54, 0xC1),
615     "fuchsia": (0xFF, 0x00, 0xFF),
616     "fuego": (0xBE, 0xDE, 0x0D),
617     "fuel yellow": (0xEC, 0xA9, 0x27),
618     "fun blue": (0x19, 0x59, 0xA8),
619     "fun green": (0x01, 0x6D, 0x39),
620     "fuscous gray": (0x54, 0x53, 0x4D),
621     "fuzzy wuzzy brown": (0xC4, 0x56, 0x55),
622     "gable green": (0x16, 0x35, 0x31),
623     "gainsboro": (0xDC, 0xDC, 0xDC),
624     "gallery": (0xEF, 0xEF, 0xEF),
625     "galliano": (0xDC, 0xB2, 0x0C),
626     "gamboge": (0xE4, 0x9B, 0x0F),
627     "geebung": (0xD1, 0x8F, 0x1B),
628     "genoa": (0x15, 0x73, 0x6B),
629     "geraldine": (0xFB, 0x89, 0x89),
630     "geyser": (0xD4, 0xDF, 0xE2),
631     "ghost white": (0xF8, 0xF8, 0xFF),
632     "ghost": (0xC7, 0xC9, 0xD5),
633     "gigas": (0x52, 0x3C, 0x94),
634     "gimblet": (0xB8, 0xB5, 0x6A),
635     "gin fizz": (0xFF, 0xF9, 0xE2),
636     "gin": (0xE8, 0xF2, 0xEB),
637     "givry": (0xF8, 0xE4, 0xBF),
638     "glacier": (0x80, 0xB3, 0xC4),
639     "glade green": (0x61, 0x84, 0x5F),
640     "go ben": (0x72, 0x6D, 0x4E),
641     "goblin": (0x3D, 0x7D, 0x52),
642     "gold drop": (0xF1, 0x82, 0x00),
643     "gold sand": (0xE6, 0xBE, 0x8A),
644     "gold tips": (0xDE, 0xBA, 0x13),
645     "gold": (0xFF, 0xD7, 0x00),
646     "golden bell": (0xE2, 0x89, 0x13),
647     "golden dream": (0xF0, 0xD5, 0x2D),
648     "golden fizz": (0xF5, 0xFB, 0x3D),
649     "golden glow": (0xFD, 0xE2, 0x95),
650     "golden grass": (0xDA, 0xA5, 0x20),
651     "golden sand": (0xF0, 0xDB, 0x7D),
652     "golden tainoi": (0xFF, 0xCC, 0x5C),
653     "goldenrod": (0xFC, 0xD6, 0x67),
654     "gondola": (0x26, 0x14, 0x14),
655     "gordons green": (0x0B, 0x11, 0x07),
656     "gorse": (0xFF, 0xF1, 0x4F),
657     "gossamer": (0x06, 0x9B, 0x81),
658     "gossip": (0xD2, 0xF8, 0xB0),
659     "gothic": (0x6D, 0x92, 0xA1),
660     "governor bay": (0x2F, 0x3C, 0xB3),
661     "grain brown": (0xE4, 0xD5, 0xB7),
662     "grandis": (0xFF, 0xD3, 0x8C),
663     "granite green": (0x8D, 0x89, 0x74),
664     "granny apple": (0xD5, 0xF6, 0xE3),
665     "granny smith apple": (0x9D, 0xE0, 0x93),
666     "granny smith": (0x84, 0xA0, 0xA0),
667     "grape": (0x38, 0x1A, 0x51),
668     "graphite": (0x25, 0x16, 0x07),
669     "gravel": (0x4A, 0x44, 0x4B),
670     "gray asparagus": (0x46, 0x59, 0x45),
671     "gray chateau": (0xA2, 0xAA, 0xB3),
672     "gray nickel": (0xC3, 0xC3, 0xBD),
673     "gray nurse": (0xE7, 0xEC, 0xE6),
674     "gray olive": (0xA9, 0xA4, 0x91),
675     "gray suit": (0xC1, 0xBE, 0xCD),
676     "gray": (0x80, 0x80, 0x80),
677     "green haze": (0x01, 0xA3, 0x68),
678     "green house": (0x24, 0x50, 0x0F),
679     "green kelp": (0x25, 0x31, 0x1C),
680     "green leaf": (0x43, 0x6A, 0x0D),
681     "green mist": (0xCB, 0xD3, 0xB0),
682     "green pea": (0x1D, 0x61, 0x42),
683     "green smoke": (0xA4, 0xAF, 0x6E),
684     "green spring": (0xB8, 0xC1, 0xB1),
685     "green vogue": (0x03, 0x2B, 0x52),
686     "green waterloo": (0x10, 0x14, 0x05),
687     "green white": (0xE8, 0xEB, 0xE0),
688     "green yellow": (0xAD, 0xFF, 0x2F),
689     "green": (0x00, 0xFF, 0x00),
690     "grenadier": (0xD5, 0x46, 0x00),
691     "guardsman red": (0xBA, 0x01, 0x01),
692     "gulf blue": (0x05, 0x16, 0x57),
693     "gulf stream": (0x80, 0xB3, 0xAE),
694     "gull gray": (0x9D, 0xAC, 0xB7),
695     "gum leaf": (0xB6, 0xD3, 0xBF),
696     "gumbo": (0x7C, 0xA1, 0xA6),
697     "gun powder": (0x41, 0x42, 0x57),
698     "gunsmoke": (0x82, 0x86, 0x85),
699     "gurkha": (0x9A, 0x95, 0x77),
700     "hacienda": (0x98, 0x81, 0x1B),
701     "hairy heath": (0x6B, 0x2A, 0x14),
702     "haiti": (0x1B, 0x10, 0x35),
703     "half and half": (0xFF, 0xFE, 0xE1),
704     "half baked": (0x85, 0xC4, 0xCC),
705     "half colonial white": (0xFD, 0xF6, 0xD3),
706     "half dutch white": (0xFE, 0xF7, 0xDE),
707     "half spanish white": (0xFE, 0xF4, 0xDB),
708     "hampton": (0xE5, 0xD8, 0xAF),
709     "harlequin": (0x3F, 0xFF, 0x00),
710     "harp": (0xE6, 0xF2, 0xEA),
711     "harvest gold": (0xE0, 0xB9, 0x74),
712     "havelock blue": (0x55, 0x90, 0xD9),
713     "hawaiian tan": (0x9D, 0x56, 0x16),
714     "hawkes blue": (0xD4, 0xE2, 0xFC),
715     "heath": (0x54, 0x10, 0x12),
716     "heather": (0xB7, 0xC3, 0xD0),
717     "heathered gray": (0xB6, 0xB0, 0x95),
718     "heavy metal": (0x2B, 0x32, 0x28),
719     "heliotrope": (0xDF, 0x73, 0xFF),
720     "hemlock": (0x5E, 0x5D, 0x3B),
721     "hemp": (0x90, 0x78, 0x74),
722     "hibiscus": (0xB6, 0x31, 0x6C),
723     "highland": (0x6F, 0x8E, 0x63),
724     "hillary": (0xAC, 0xA5, 0x86),
725     "himalaya": (0x6A, 0x5D, 0x1B),
726     "hint of green": (0xE6, 0xFF, 0xE9),
727     "hint of red": (0xFB, 0xF9, 0xF9),
728     "hint of yellow": (0xFA, 0xFD, 0xE4),
729     "hippie blue": (0x58, 0x9A, 0xAF),
730     "hippie green": (0x53, 0x82, 0x4B),
731     "hippie pink": (0xAE, 0x45, 0x60),
732     "hit gray": (0xA1, 0xAD, 0xB5),
733     "hit pink": (0xFF, 0xAB, 0x81),
734     "hokey pokey": (0xC8, 0xA5, 0x28),
735     "hoki": (0x65, 0x86, 0x9F),
736     "holly": (0x01, 0x1D, 0x13),
737     "hollywood cerise": (0xF4, 0x00, 0xA1),
738     "honey flower": (0x4F, 0x1C, 0x70),
739     "honeydew": (0xF0, 0xFF, 0xF0),
740     "honeysuckle": (0xED, 0xFC, 0x84),
741     "hopbush": (0xD0, 0x6D, 0xA1),
742     "horizon": (0x5A, 0x87, 0xA0),
743     "horses neck": (0x60, 0x49, 0x13),
744     "hot cinnamon": (0xD2, 0x69, 0x1E),
745     "hot pink": (0xFF, 0x69, 0xB4),
746     "hot toddy": (0xB3, 0x80, 0x07),
747     "humming bird": (0xCF, 0xF9, 0xF3),
748     "hunter green": (0x16, 0x1D, 0x10),
749     "hurricane": (0x87, 0x7C, 0x7B),
750     "husk": (0xB7, 0xA4, 0x58),
751     "ice cold": (0xB1, 0xF4, 0xE7),
752     "iceberg": (0xDA, 0xF4, 0xF0),
753     "illusion": (0xF6, 0xA4, 0xC9),
754     "inch worm": (0xB0, 0xE3, 0x13),
755     "indian khaki": (0xC3, 0xB0, 0x91),
756     "indian red": (0xCD, 0x5C, 0x5C),
757     "indian tan": (0x4D, 0x1E, 0x01),
758     "indigo": (0x4F, 0x69, 0xC6),
759     "indochine": (0xC2, 0x6B, 0x03),
760     "international orange": (0xFF, 0x4F, 0x00),
761     "irish coffee": (0x5F, 0x3D, 0x26),
762     "iroko": (0x43, 0x31, 0x20),
763     "iron": (0xD4, 0xD7, 0xD9),
764     "ironside gray": (0x67, 0x66, 0x62),
765     "ironstone": (0x86, 0x48, 0x3C),
766     "island spice": (0xFF, 0xFC, 0xEE),
767     "ivory": (0xFF, 0xFF, 0xF0),
768     "jacaranda": (0x2E, 0x03, 0x29),
769     "jacarta": (0x3A, 0x2A, 0x6A),
770     "jacko bean": (0x2E, 0x19, 0x05),
771     "jacksons purple": (0x20, 0x20, 0x8D),
772     "jade": (0x00, 0xA8, 0x6B),
773     "jaffa": (0xEF, 0x86, 0x3F),
774     "jagged ice": (0xC2, 0xE8, 0xE5),
775     "jagger": (0x35, 0x0E, 0x57),
776     "jaguar": (0x08, 0x01, 0x10),
777     "jambalaya": (0x5B, 0x30, 0x13),
778     "janna": (0xF4, 0xEB, 0xD3),
779     "japanese laurel": (0x0A, 0x69, 0x06),
780     "japanese maple": (0x78, 0x01, 0x09),
781     "japonica": (0xD8, 0x7C, 0x63),
782     "java": (0x1F, 0xC2, 0xC2),
783     "jazzberry jam": (0xA5, 0x0B, 0x5E),
784     "jelly bean": (0x29, 0x7B, 0x9A),
785     "jet stream": (0xB5, 0xD2, 0xCE),
786     "jewel": (0x12, 0x6B, 0x40),
787     "jon": (0x3B, 0x1F, 0x1F),
788     "jonquil": (0xEE, 0xFF, 0x9A),
789     "jordy blue": (0x8A, 0xB9, 0xF1),
790     "judge gray": (0x54, 0x43, 0x33),
791     "jumbo": (0x7C, 0x7B, 0x82),
792     "jungle green": (0x29, 0xAB, 0x87),
793     "jungle mist": (0xB4, 0xCF, 0xD3),
794     "juniper": (0x6D, 0x92, 0x92),
795     "just right": (0xEC, 0xCD, 0xB9),
796     "kabul": (0x5E, 0x48, 0x3E),
797     "kaitoke green": (0x00, 0x46, 0x20),
798     "kangaroo": (0xC6, 0xC8, 0xBD),
799     "karaka": (0x1E, 0x16, 0x09),
800     "karry": (0xFF, 0xEA, 0xD4),
801     "kashmir blue": (0x50, 0x70, 0x96),
802     "kelp": (0x45, 0x49, 0x36),
803     "kenyan copper": (0x7C, 0x1C, 0x05),
804     "keppel": (0x3A, 0xB0, 0x9E),
805     "key lime pie": (0xBF, 0xC9, 0x21),
806     "khaki": (0xF0, 0xE6, 0x8C),
807     "kidnapper": (0xE1, 0xEA, 0xD4),
808     "kilamanjaro": (0x24, 0x0C, 0x02),
809     "killarney": (0x3A, 0x6A, 0x47),
810     "kimberly": (0x73, 0x6C, 0x9F),
811     "kingfisher daisy": (0x3E, 0x04, 0x80),
812     "kiosk.house": (90, 95, 0),
813     "klein blue": (0x00, 0x2F, 0xA7),
814     "kobi": (0xE7, 0x9F, 0xC4),
815     "kokoda": (0x6E, 0x6D, 0x57),
816     "korma": (0x8F, 0x4B, 0x0E),
817     "koromiko": (0xFF, 0xBD, 0x5F),
818     "kournikova": (0xFF, 0xE7, 0x72),
819     "kumera": (0x88, 0x62, 0x21),
820     "la palma": (0x36, 0x87, 0x16),
821     "la rioja": (0xB3, 0xC1, 0x10),
822     "las palmas": (0xC6, 0xE6, 0x10),
823     "laser lemon": (0xFF, 0xFF, 0x66),
824     "laser": (0xC8, 0xB5, 0x68),
825     "laurel": (0x74, 0x93, 0x78),
826     "lavender blush": (0xFF, 0xF0, 0xF5),
827     "lavender gray": (0xBD, 0xBB, 0xD7),
828     "lavender magenta": (0xEE, 0x82, 0xEE),
829     "lavender pink": (0xFB, 0xAE, 0xD2),
830     "lavender purple": (0x96, 0x7B, 0xB6),
831     "lavender rose": (0xFB, 0xA0, 0xE3),
832     "lavender": (0xB5, 0x7E, 0xDC),
833     "lawn green": (0x7C, 0xFC, 0x00),
834     "leather": (0x96, 0x70, 0x59),
835     "lemon chiffon": (0xFF, 0xFA, 0xCD),
836     "lemon ginger": (0xAC, 0x9E, 0x22),
837     "lemon grass": (0x9B, 0x9E, 0x8F),
838     "lemon": (0xFD, 0xE9, 0x10),
839     "light apricot": (0xFD, 0xD5, 0xB1),
840     "light blue": (0xAD, 0xD8, 0xE6),
841     "light coral": (0xF0, 0x80, 0x80),
842     "light cyan": (0xE0, 0xFF, 0xFF),
843     "light goldenrod": (0xFA, 0xFA, 0xD2),
844     "light gray": (0x26, 0x23, 0x35),
845     "light green": (0x90, 0xEE, 0x90),
846     "light orchid": (0xE2, 0x9C, 0xD2),
847     "light pink": (0xDD, 0xB6, 0xC1),
848     "light salmon": (0xDD, 0xA0, 0x7A),
849     "light sea green": (0x20, 0xB2, 0xAA),
850     "light slate gray": (0x77, 0x88, 0x99),
851     "light steel blue": (0xB0, 0xC4, 0xDE),
852     "light wisteria": (0xC9, 0xA0, 0xDC),
853     "light yellow": (0xFF, 0xFF, 0xE0),
854     "lightning yellow": (0xFC, 0xC0, 0x1E),
855     "lilac bush": (0x98, 0x74, 0xD3),
856     "lilac": (0xC8, 0xA2, 0xC8),
857     "lily white": (0xE7, 0xF8, 0xFF),
858     "lily": (0xC8, 0xAA, 0xBF),
859     "lima": (0x76, 0xBD, 0x17),
860     "lime": (0xBF, 0xFF, 0x00),
861     "limeade": (0x6F, 0x9D, 0x02),
862     "limed ash": (0x74, 0x7D, 0x63),
863     "limed oak": (0xAC, 0x8A, 0x56),
864     "limed spruce": (0x39, 0x48, 0x51),
865     "linen": (0xFA, 0xF0, 0xE6),
866     "link water": (0xD9, 0xE4, 0xF5),
867     "lipstick": (0xAB, 0x05, 0x63),
868     "lisbon brown": (0x42, 0x39, 0x21),
869     "livid brown": (0x4D, 0x28, 0x2E),
870     "loafer": (0xEE, 0xF4, 0xDE),
871     "loblolly": (0xBD, 0xC9, 0xCE),
872     "lochinvar": (0x2C, 0x8C, 0x84),
873     "lochmara": (0x00, 0x7E, 0xC7),
874     "locust": (0xA8, 0xAF, 0x8E),
875     "log cabin": (0x24, 0x2A, 0x1D),
876     "logan": (0xAA, 0xA9, 0xCD),
877     "lola": (0xDF, 0xCF, 0xDB),
878     "london hue": (0xBE, 0xA6, 0xC3),
879     "lonestar": (0x6D, 0x01, 0x01),
880     "lotus": (0x86, 0x3C, 0x3C),
881     "loulou": (0x46, 0x0B, 0x41),
882     "lucky point": (0x1A, 0x1A, 0x68),
883     "lucky": (0xAF, 0x9F, 0x1C),
884     "lunar green": (0x3C, 0x49, 0x3A),
885     "luxor gold": (0xA7, 0x88, 0x2C),
886     "lynch": (0x69, 0x7E, 0x9A),
887     "mabel": (0xD9, 0xF7, 0xFF),
888     "macaroni and cheese": (0xFF, 0xB9, 0x7B),
889     "madang": (0xB7, 0xF0, 0xBE),
890     "madison": (0x09, 0x25, 0x5D),
891     "madras": (0x3F, 0x30, 0x02),
892     "magenta": (0xFF, 0x00, 0xFF),
893     "magic mint": (0xAA, 0xF0, 0xD1),
894     "magnolia": (0xF8, 0xF4, 0xFF),
895     "mahogany": (0x4E, 0x06, 0x06),
896     "mai tai": (0xB0, 0x66, 0x08),
897     "maize": (0xF5, 0xD5, 0xA0),
898     "makara": (0x89, 0x7D, 0x6D),
899     "mako": (0x44, 0x49, 0x54),
900     "malachite": (0x0B, 0xDA, 0x51),
901     "malibu": (0x7D, 0xC8, 0xF7),
902     "mallard": (0x23, 0x34, 0x18),
903     "malta": (0xBD, 0xB2, 0xA1),
904     "mamba": (0x8E, 0x81, 0x90),
905     "manatee": (0x8D, 0x90, 0xA1),
906     "mandalay": (0xAD, 0x78, 0x1B),
907     "mandy": (0xE2, 0x54, 0x65),
908     "mandys pink": (0xF2, 0xC3, 0xB2),
909     "mango tango": (0xE7, 0x72, 0x00),
910     "manhattan": (0xF5, 0xC9, 0x99),
911     "mantis": (0x74, 0xC3, 0x65),
912     "mantle": (0x8B, 0x9C, 0x90),
913     "manz": (0xEE, 0xEF, 0x78),
914     "mardi gras": (0x35, 0x00, 0x36),
915     "marigold yellow": (0xFB, 0xE8, 0x70),
916     "marigold": (0xB9, 0x8D, 0x28),
917     "mariner": (0x28, 0x6A, 0xCD),
918     "maroon flush": (0xC3, 0x21, 0x48),
919     "maroon oak": (0x52, 0x0C, 0x17),
920     "maroon": (0x80, 0x00, 0x00),
921     "marshland": (0x0B, 0x0F, 0x08),
922     "martini": (0xAF, 0xA0, 0x9E),
923     "martinique": (0x36, 0x30, 0x50),
924     "marzipan": (0xF8, 0xDB, 0x9D),
925     "masala": (0x40, 0x3B, 0x38),
926     "matisse": (0x1B, 0x65, 0x9D),
927     "matrix": (0xB0, 0x5D, 0x54),
928     "matterhorn": (0x4E, 0x3B, 0x41),
929     "mauve": (0xE0, 0xB0, 0xFF),
930     "mauvelous": (0xF0, 0x91, 0xA9),
931     "maverick": (0xD8, 0xC2, 0xD5),
932     "medium aquamarine": (0x66, 0xCD, 0xAA),
933     "medium blue": (0x00, 0x00, 0xCD),
934     "medium carmine": (0xAF, 0x40, 0x35),
935     "medium orchid": (0xBA, 0x55, 0xD3),
936     "medium purple": (0x93, 0x70, 0xDB),
937     "medium red violet": (0xBB, 0x33, 0x85),
938     "medium sea green": (0x3C, 0xB3, 0x71),
939     "medium slate blue": (0x7B, 0x68, 0xEE),
940     "medium spring green": (0x00, 0xFA, 0x9A),
941     "medium turquoise": (0x48, 0xD1, 0xCC),
942     "medium violet red": (0xC7, 0x15, 0x85),
943     "meerkat.cabin": (95, 0x00, 95),
944     "melanie": (0xE4, 0xC2, 0xD5),
945     "melanzane": (0x30, 0x05, 0x29),
946     "melon": (0xFE, 0xBA, 0xAD),
947     "melrose": (0xC7, 0xC1, 0xFF),
948     "mercury": (0xE5, 0xE5, 0xE5),
949     "merino": (0xF6, 0xF0, 0xE6),
950     "merlin": (0x41, 0x3C, 0x37),
951     "merlot": (0x83, 0x19, 0x23),
952     "metallic bronze": (0x49, 0x37, 0x1B),
953     "metallic copper": (0x71, 0x29, 0x1D),
954     "meteor": (0xD0, 0x7D, 0x12),
955     "meteorite": (0x3C, 0x1F, 0x76),
956     "mexican red": (0xA7, 0x25, 0x25),
957     "mid gray": (0x5F, 0x5F, 0x6E),
958     "midnight blue": (0x00, 0x33, 0x66),
959     "midnight moss": (0x04, 0x10, 0x04),
960     "midnight": (0x01, 0x16, 0x35),
961     "mikado": (0x2D, 0x25, 0x10),
962     "milan": (0xFA, 0xFF, 0xA4),
963     "milano red": (0xB8, 0x11, 0x04),
964     "milk punch": (0xFF, 0xF6, 0xD4),
965     "millbrook": (0x59, 0x44, 0x33),
966     "mimosa": (0xF8, 0xFD, 0xD3),
967     "mindaro": (0xE3, 0xF9, 0x88),
968     "mine shaft": (0x32, 0x32, 0x32),
969     "mineral green": (0x3F, 0x5D, 0x53),
970     "ming": (0x36, 0x74, 0x7D),
971     "minsk": (0x3F, 0x30, 0x7F),
972     "mint cream": (0xF5, 0xFF, 0xF1),
973     "mint green": (0x98, 0xFF, 0x98),
974     "mint julep": (0xF1, 0xEE, 0xC1),
975     "mint tulip": (0xC4, 0xF4, 0xEB),
976     "mirage": (0x16, 0x19, 0x28),
977     "mischka": (0xD1, 0xD2, 0xDD),
978     "mist gray": (0xC4, 0xC4, 0xBC),
979     "misty rose": (0xFF, 0xE4, 0xE1),
980     "mobster": (0x7F, 0x75, 0x89),
981     "moccaccino": (0x6E, 0x1D, 0x14),
982     "moccasin": (0xFF, 0xE4, 0xB5),
983     "mocha": (0x78, 0x2D, 0x19),
984     "mojo": (0xC0, 0x47, 0x37),
985     "mona lisa": (0xFF, 0xA1, 0x94),
986     "monarch": (0x8B, 0x07, 0x23),
987     "mondo": (0x4A, 0x3C, 0x30),
988     "mongoose": (0xB5, 0xA2, 0x7F),
989     "monsoon": (0x8A, 0x83, 0x89),
990     "monte carlo": (0x83, 0xD0, 0xC6),
991     "monza": (0xC7, 0x03, 0x1E),
992     "moody blue": (0x7F, 0x76, 0xD3),
993     "moon glow": (0xFC, 0xFE, 0xDA),
994     "moon mist": (0xDC, 0xDD, 0xCC),
995     "moon raker": (0xD6, 0xCE, 0xF6),
996     "morning glory": (0x9E, 0xDE, 0xE0),
997     "morocco brown": (0x44, 0x1D, 0x00),
998     "mortar": (0x50, 0x43, 0x51),
999     "mosque": (0x03, 0x6A, 0x6E),
1000     "moss green": (0xAD, 0xDF, 0xAD),
1001     "mountain meadow": (0x1A, 0xB3, 0x85),
1002     "mountain mist": (0x95, 0x93, 0x96),
1003     "mountbatten pink": (0x99, 0x7A, 0x8D),
1004     "muddy waters": (0xB7, 0x8E, 0x5C),
1005     "muesli": (0xAA, 0x8B, 0x5B),
1006     "mulberry wood": (0x5C, 0x05, 0x36),
1007     "mulberry": (0xC5, 0x4B, 0x8C),
1008     "mule fawn": (0x8C, 0x47, 0x2F),
1009     "mulled wine": (0x4E, 0x45, 0x62),
1010     "mustard": (0xFF, 0xDB, 0x58),
1011     "my pink": (0xD6, 0x91, 0x88),
1012     "my sin": (0xFF, 0xB3, 0x1F),
1013     "mystic": (0xE2, 0xEB, 0xED),
1014     "nandor": (0x4B, 0x5D, 0x52),
1015     "napa": (0xAC, 0xA4, 0x94),
1016     "narvik": (0xED, 0xF9, 0xF1),
1017     "natural gray": (0x8B, 0x86, 0x80),
1018     "navajo white": (0xFF, 0xDE, 0xAD),
1019     "navy blue": (0x00, 0x00, 0x80),
1020     "navy": (0x00, 0x00, 0x80),
1021     "nebula": (0xCB, 0xDB, 0xD6),
1022     "negroni": (0xFF, 0xE2, 0xC5),
1023     "neon carrot": (0xFF, 0x99, 0x33),
1024     "nepal": (0x8E, 0xAB, 0xC1),
1025     "neptune": (0x7C, 0xB7, 0xBB),
1026     "nero": (0x14, 0x06, 0x00),
1027     "nevada": (0x64, 0x6E, 0x75),
1028     "new orleans": (0xF3, 0xD6, 0x9D),
1029     "new york pink": (0xD7, 0x83, 0x7F),
1030     "niagara": (0x06, 0xA1, 0x89),
1031     "night rider": (0x1F, 0x12, 0x0F),
1032     "night shadz": (0xAA, 0x37, 0x5A),
1033     "nile blue": (0x19, 0x37, 0x51),
1034     "nobel": (0xB7, 0xB1, 0xB1),
1035     "nomad": (0xBA, 0xB1, 0xA2),
1036     "norway": (0xA8, 0xBD, 0x9F),
1037     "nugget": (0xC5, 0x99, 0x22),
1038     "nutmeg wood finish": (0x68, 0x36, 0x00),
1039     "nutmeg": (0x81, 0x42, 0x2C),
1040     "oasis": (0xFE, 0xEF, 0xCE),
1041     "observatory": (0x02, 0x86, 0x6F),
1042     "ocean green": (0x41, 0xAA, 0x78),
1043     "ochre": (0xCC, 0x77, 0x22),
1044     "off green": (0xE6, 0xF8, 0xF3),
1045     "off yellow": (0xFE, 0xF9, 0xE3),
1046     "oil": (0x28, 0x1E, 0x15),
1047     "old brick": (0x90, 0x1E, 0x1E),
1048     "old copper": (0x72, 0x4A, 0x2F),
1049     "old gold": (0xCF, 0xB5, 0x3B),
1050     "old lace": (0xFD, 0xF5, 0xE6),
1051     "old lavender": (0x79, 0x68, 0x78),
1052     "old rose": (0xC0, 0x80, 0x81),
1053     "olive drab": (0x6B, 0x8E, 0x23),
1054     "olive green": (0xB5, 0xB3, 0x5C),
1055     "olive haze": (0x8B, 0x84, 0x70),
1056     "olive": (0x80, 0x80, 0x00),
1057     "olivetone": (0x71, 0x6E, 0x10),
1058     "olivine": (0x9A, 0xB9, 0x73),
1059     "onahau": (0xCD, 0xF4, 0xFF),
1060     "onion": (0x2F, 0x27, 0x0E),
1061     "opal": (0xA9, 0xC6, 0xC2),
1062     "opium": (0x8E, 0x6F, 0x70),
1063     "oracle": (0x37, 0x74, 0x75),
1064     "orange peel": (0xFF, 0xA0, 0x00),
1065     "orange red": (0xFF, 0x45, 0x00),
1066     "orange roughy": (0xC4, 0x57, 0x19),
1067     "orange white": (0xFE, 0xFC, 0xED),
1068     "orange": (0xFF, 0x68, 0x1F),
1069     "orchid white": (0xFF, 0xFD, 0xF3),
1070     "orchid": (0xDA, 0x70, 0xD6),
1071     "oregon": (0x9B, 0x47, 0x03),
1072     "orient": (0x01, 0x5E, 0x85),
1073     "oriental pink": (0xC6, 0x91, 0x91),
1074     "orinoco": (0xF3, 0xFB, 0xD4),
1075     "oslo gray": (0x87, 0x8D, 0x91),
1076     "ottoman": (0xE9, 0xF8, 0xED),
1077     "outer space": (0x2D, 0x38, 0x3A),
1078     "outrageous orange": (0xFF, 0x60, 0x37),
1079     "oxford blue": (0x38, 0x45, 0x55),
1080     "oxley": (0x77, 0x9E, 0x86),
1081     "oyster bay": (0xDA, 0xFA, 0xFF),
1082     "oyster pink": (0xE9, 0xCE, 0xCD),
1083     "paarl": (0xA6, 0x55, 0x29),
1084     "pablo": (0x77, 0x6F, 0x61),
1085     "pacific blue": (0x00, 0x9D, 0xC4),
1086     "pacifika": (0x77, 0x81, 0x20),
1087     "paco": (0x41, 0x1F, 0x10),
1088     "padua": (0xAD, 0xE6, 0xC4),
1089     "pale canary": (0xFF, 0xFF, 0x99),
1090     "pale goldenrod": (0xEE, 0xE8, 0xAA),
1091     "pale green": (0x98, 0xFB, 0x98),
1092     "pale leaf": (0xC0, 0xD3, 0xB9),
1093     "pale oyster": (0x98, 0x8D, 0x77),
1094     "pale prim": (0xFD, 0xFE, 0xB8),
1095     "pale rose": (0xFF, 0xE1, 0xF2),
1096     "pale sky": (0x6E, 0x77, 0x83),
1097     "pale slate": (0xC3, 0xBF, 0xC1),
1098     "pale turquoise": (0xAF, 0xEE, 0xEE),
1099     "pale violet red": (0xDB, 0x70, 0x93),
1100     "palm green": (0x09, 0x23, 0x0F),
1101     "palm leaf": (0x19, 0x33, 0x0E),
1102     "pampas": (0xF4, 0xF2, 0xEE),
1103     "panache": (0xEA, 0xF6, 0xEE),
1104     "pancho": (0xED, 0xCD, 0xAB),
1105     "papaya whip": (0xFF, 0xEF, 0xD5),
1106     "paprika": (0x8D, 0x02, 0x26),
1107     "paradiso": (0x31, 0x7D, 0x82),
1108     "parchment": (0xF1, 0xE9, 0xD2),
1109     "paris daisy": (0xFF, 0xF4, 0x6E),
1110     "paris m": (0x26, 0x05, 0x6A),
1111     "paris white": (0xCA, 0xDC, 0xD4),
1112     "parsley": (0x13, 0x4F, 0x19),
1113     "pastel green": (0x77, 0xDD, 0x77),
1114     "pastel pink": (0xFF, 0xD1, 0xDC),
1115     "patina": (0x63, 0x9A, 0x8F),
1116     "pattens blue": (0xDE, 0xF5, 0xFF),
1117     "paua": (0x26, 0x03, 0x68),
1118     "pavlova": (0xD7, 0xC4, 0x98),
1119     "peach cream": (0xFF, 0xF0, 0xDB),
1120     "peach orange": (0xFF, 0xCC, 0x99),
1121     "peach puff": (0xFF, 0xDA, 0xB9),
1122     "peach schnapps": (0xFF, 0xDC, 0xD6),
1123     "peach yellow": (0xFA, 0xDF, 0xAD),
1124     "peach": (0xFF, 0xE5, 0xB4),
1125     "peanut": (0x78, 0x2F, 0x16),
1126     "pear": (0xD1, 0xE2, 0x31),
1127     "pearl bush": (0xE8, 0xE0, 0xD5),
1128     "pearl lusta": (0xFC, 0xF4, 0xDC),
1129     "peat": (0x71, 0x6B, 0x56),
1130     "pelorous": (0x3E, 0xAB, 0xBF),
1131     "peppermint": (0xE3, 0xF5, 0xE1),
1132     "perano": (0xA9, 0xBE, 0xF2),
1133     "perfume": (0xD0, 0xBE, 0xF8),
1134     "periglacial blue": (0xE1, 0xE6, 0xD6),
1135     "periwinkle gray": (0xC3, 0xCD, 0xE6),
1136     "periwinkle": (0xCC, 0xCC, 0xFF),
1137     "persian blue": (0x1C, 0x39, 0xBB),
1138     "persian green": (0x00, 0xA6, 0x93),
1139     "persian indigo": (0x32, 0x12, 0x7A),
1140     "persian pink": (0xF7, 0x7F, 0xBE),
1141     "persian plum": (0x70, 0x1C, 0x1C),
1142     "persian red": (0xCC, 0x33, 0x33),
1143     "persian rose": (0xFE, 0x28, 0xA2),
1144     "persimmon": (0xFF, 0x6B, 0x53),
1145     "peru tan": (0x7F, 0x3A, 0x02),
1146     "peru": (0xCD, 0x85, 0x3F),
1147     "pesto": (0x7C, 0x76, 0x31),
1148     "petite orchid": (0xDB, 0x96, 0x90),
1149     "pewter": (0x96, 0xA8, 0xA1),
1150     "pharlap": (0xA3, 0x80, 0x7B),
1151     "picasso": (0xFF, 0xF3, 0x9D),
1152     "pickled bean": (0x6E, 0x48, 0x26),
1153     "pickled bluewood": (0x31, 0x44, 0x59),
1154     "picton blue": (0x45, 0xB1, 0xE8),
1155     "pig pink": (0xFD, 0xD7, 0xE4),
1156     "pigeon post": (0xAF, 0xBD, 0xD9),
1157     "pigment indigo": (0x4B, 0x00, 0x82),
1158     "pine cone": (0x6D, 0x5E, 0x54),
1159     "pine glade": (0xC7, 0xCD, 0x90),
1160     "pine green": (0x01, 0x79, 0x6F),
1161     "pine tree": (0x17, 0x1F, 0x04),
1162     "pink flamingo": (0xFF, 0x66, 0xFF),
1163     "pink flare": (0xE1, 0xC0, 0xC8),
1164     "pink lace": (0xFF, 0xDD, 0xF4),
1165     "pink lady": (0xFF, 0xF1, 0xD8),
1166     "pink salmon": (0xFF, 0x91, 0xA4),
1167     "pink swan": (0xBE, 0xB5, 0xB7),
1168     "pink": (0xFF, 0xC0, 0xCB),
1169     "piper": (0xC9, 0x63, 0x23),
1170     "pipi": (0xFE, 0xF4, 0xCC),
1171     "pippin": (0xFF, 0xE1, 0xDF),
1172     "pirate gold": (0xBA, 0x7F, 0x03),
1173     "pistachio": (0x9D, 0xC2, 0x09),
1174     "pixie green": (0xC0, 0xD8, 0xB6),
1175     "pizazz": (0xFF, 0x90, 0x00),
1176     "pizza": (0xC9, 0x94, 0x15),
1177     "plantation": (0x27, 0x50, 0x4B),
1178     "plum": (0x84, 0x31, 0x79),
1179     "pohutukawa": (0x8F, 0x02, 0x1C),
1180     "polar": (0xE5, 0xF9, 0xF6),
1181     "polo blue": (0x8D, 0xA8, 0xCC),
1182     "pomegranate": (0xF3, 0x47, 0x23),
1183     "pompadour": (0x66, 0x00, 0x45),
1184     "porcelain": (0xEF, 0xF2, 0xF3),
1185     "porsche": (0xEA, 0xAE, 0x69),
1186     "port gore": (0x25, 0x1F, 0x4F),
1187     "portafino": (0xFF, 0xFF, 0xB4),
1188     "portage": (0x8B, 0x9F, 0xEE),
1189     "portica": (0xF9, 0xE6, 0x63),
1190     "pot pourri": (0xF5, 0xE7, 0xE2),
1191     "potters clay": (0x8C, 0x57, 0x38),
1192     "powder ash": (0xBC, 0xC9, 0xC2),
1193     "powder blue": (0xB0, 0xE0, 0xE6),
1194     "prairie sand": (0x9A, 0x38, 0x20),
1195     "prelude": (0xD0, 0xC0, 0xE5),
1196     "prim": (0xF0, 0xE2, 0xEC),
1197     "primrose": (0xED, 0xEA, 0x99),
1198     "provincial pink": (0xFE, 0xF5, 0xF1),
1199     "prussian blue": (0x00, 0x31, 0x53),
1200     "puce": (0xCC, 0x88, 0x99),
1201     "pueblo": (0x7D, 0x2C, 0x14),
1202     "puerto rico": (0x3F, 0xC1, 0xAA),
1203     "pumice": (0xC2, 0xCA, 0xC4),
1204     "pumpkin skin": (0xB1, 0x61, 0x0B),
1205     "pumpkin": (0xFF, 0x75, 0x18),
1206     "punch": (0xDC, 0x43, 0x33),
1207     "punga": (0x4D, 0x3D, 0x14),
1208     "purple heart": (0x65, 0x2D, 0xC1),
1209     "purple mountain's majesty": (0x96, 0x78, 0xB6),
1210     "purple pizzazz": (0xFF, 0x00, 0xCC),
1211     "purple": (0x66, 0x00, 0x99),
1212     "putty": (0xE7, 0xCD, 0x8C),
1213     "quarter pearl lusta": (0xFF, 0xFD, 0xF4),
1214     "quarter spanish white": (0xF7, 0xF2, 0xE1),
1215     "quicksand": (0xBD, 0x97, 0x8E),
1216     "quill gray": (0xD6, 0xD6, 0xD1),
1217     "quincy": (0x62, 0x3F, 0x2D),
1218     "racing green": (0x0C, 0x19, 0x11),
1219     "radical red": (0xFF, 0x35, 0x5E),
1220     "raffia": (0xEA, 0xDA, 0xB8),
1221     "rainee": (0xB9, 0xC8, 0xAC),
1222     "rajah": (0xF7, 0xB6, 0x68),
1223     "rangitoto": (0x2E, 0x32, 0x22),
1224     "rangoon green": (0x1C, 0x1E, 0x13),
1225     "raven": (0x72, 0x7B, 0x89),
1226     "raw sienna": (0xD2, 0x7D, 0x46),
1227     "raw umber": (0x73, 0x4A, 0x12),
1228     "razzle dazzle rose": (0xFF, 0x33, 0xCC),
1229     "razzmatazz": (0xE3, 0x0B, 0x5C),
1230     "rebecca purple": (0x66, 0x33, 0x99),
1231     "rebel": (0x3C, 0x12, 0x06),
1232     "red beech": (0x7B, 0x38, 0x01),
1233     "red berry": (0x8E, 0x00, 0x00),
1234     "red damask": (0xDA, 0x6A, 0x41),
1235     "red devil": (0x86, 0x01, 0x11),
1236     "red orange": (0xFF, 0x3F, 0x34),
1237     "red oxide": (0x6E, 0x09, 0x02),
1238     "red ribbon": (0xED, 0x0A, 0x3F),
1239     "red robin": (0x80, 0x34, 0x1F),
1240     "red stage": (0xD0, 0x5F, 0x04),
1241     "red violet": (0xC7, 0x15, 0x85),
1242     "red": (0xFF, 0x00, 0x00),
1243     "redwood": (0x5D, 0x1E, 0x0F),
1244     "reef gold": (0x9F, 0x82, 0x1C),
1245     "reef": (0xC9, 0xFF, 0xA2),
1246     "regal blue": (0x01, 0x3F, 0x6A),
1247     "regent gray": (0x86, 0x94, 0x9F),
1248     "regent st blue": (0xAA, 0xD6, 0xE6),
1249     "remy": (0xFE, 0xEB, 0xF3),
1250     "reno sand": (0xA8, 0x65, 0x15),
1251     "resolution blue": (0x00, 0x23, 0x87),
1252     "revolver": (0x2C, 0x16, 0x32),
1253     "rhino": (0x2E, 0x3F, 0x62),
1254     "rice cake": (0xFF, 0xFE, 0xF0),
1255     "rice flower": (0xEE, 0xFF, 0xE2),
1256     "rich gold": (0xA8, 0x53, 0x07),
1257     "rio grande": (0xBB, 0xD0, 0x09),
1258     "ripe lemon": (0xF4, 0xD8, 0x1C),
1259     "ripe plum": (0x41, 0x00, 0x56),
1260     "riptide": (0x8B, 0xE6, 0xD8),
1261     "river bed": (0x43, 0x4C, 0x59),
1262     "rob roy": (0xEA, 0xC6, 0x74),
1263     "robin's egg blue": (0x00, 0xCC, 0xCC),
1264     "rock blue": (0x9E, 0xB1, 0xCD),
1265     "rock spray": (0xBA, 0x45, 0x0C),
1266     "rock": (0x4D, 0x38, 0x33),
1267     "rodeo dust": (0xC9, 0xB2, 0x9B),
1268     "rolling stone": (0x74, 0x7D, 0x83),
1269     "roman coffee": (0x79, 0x5D, 0x4C),
1270     "roman": (0xDE, 0x63, 0x60),
1271     "romance": (0xFF, 0xFE, 0xFD),
1272     "romantic": (0xFF, 0xD2, 0xB7),
1273     "ronchi": (0xEC, 0xC5, 0x4E),
1274     "roof terracotta": (0xA6, 0x2F, 0x20),
1275     "rope": (0x8E, 0x4D, 0x1E),
1276     "rose bud cherry": (0x80, 0x0B, 0x47),
1277     "rose bud": (0xFB, 0xB2, 0xA3),
1278     "rose fog": (0xE7, 0xBC, 0xB4),
1279     "rose of sharon": (0xBF, 0x55, 0x00),
1280     "rose white": (0xFF, 0xF6, 0xF5),
1281     "rose": (0xFF, 0x00, 0x7F),
1282     "rosewood": (0x65, 0x00, 0x0B),
1283     "rosy blue": (0xBC, 0x8F, 0x8F),
1284     "roti": (0xC6, 0xA8, 0x4B),
1285     "rouge": (0xA2, 0x3B, 0x6C),
1286     "royal blue": (0x41, 0x69, 0xE1),
1287     "royal heath": (0xAB, 0x34, 0x72),
1288     "royal purple": (0x6B, 0x3F, 0xA0),
1289     "rpi": (208, 95, 0),
1290     "rum swizzle": (0xF9, 0xF8, 0xE4),
1291     "rum": (0x79, 0x69, 0x89),
1292     "russet": (0x80, 0x46, 0x1B),
1293     "russett": (0x75, 0x5A, 0x57),
1294     "rust": (0xB7, 0x41, 0x0E),
1295     "rustic red": (0x48, 0x04, 0x04),
1296     "rusty nail": (0x86, 0x56, 0x0A),
1297     "saddle brown": (0x58, 0x34, 0x01),
1298     "saddle": (0x4C, 0x30, 0x24),
1299     "saffron mango": (0xF9, 0xBF, 0x58),
1300     "saffron": (0xF4, 0xC4, 0x30),
1301     "sage": (0x9E, 0xA5, 0x87),
1302     "sahara sand": (0xF1, 0xE7, 0x88),
1303     "sahara": (0xB7, 0xA2, 0x14),
1304     "sail": (0xB8, 0xE0, 0xF9),
1305     "salem": (0x09, 0x7F, 0x4B),
1306     "salmon": (0xFF, 0x8C, 0x69),
1307     "salomie": (0xFE, 0xDB, 0x8D),
1308     "salt box": (0x68, 0x5E, 0x6E),
1309     "saltpan": (0xF1, 0xF7, 0xF2),
1310     "sambuca": (0x3A, 0x20, 0x10),
1311     "san felix": (0x0B, 0x62, 0x07),
1312     "san juan": (0x30, 0x4B, 0x6A),
1313     "san marino": (0x45, 0x6C, 0xAC),
1314     "sand dune": (0x82, 0x6F, 0x65),
1315     "sandal": (0xAA, 0x8D, 0x6F),
1316     "sandrift": (0xAB, 0x91, 0x7A),
1317     "sandstone": (0x79, 0x6D, 0x62),
1318     "sandwisp": (0xF5, 0xE7, 0xA2),
1319     "sandy beach": (0xFF, 0xEA, 0xC8),
1320     "sandy brown": (0xF4, 0xA4, 0x60),
1321     "sangria": (0x92, 0x00, 0x0A),
1322     "sanguine brown": (0x8D, 0x3D, 0x38),
1323     "santa fe": (0xB1, 0x6D, 0x52),
1324     "santas gray": (0x9F, 0xA0, 0xB1),
1325     "sapling": (0xDE, 0xD4, 0xA4),
1326     "sapphire": (0x2F, 0x51, 0x9E),
1327     "saratoga": (0x55, 0x5B, 0x10),
1328     "satin linen": (0xE6, 0xE4, 0xD4),
1329     "sauvignon": (0xFF, 0xF5, 0xF3),
1330     "sazerac": (0xFF, 0xF4, 0xE0),
1331     "scampi": (0x67, 0x5F, 0xA6),
1332     "scandal": (0xCF, 0xFA, 0xF4),
1333     "scarlet gum": (0x43, 0x15, 0x60),
1334     "scarlet": (0xFF, 0x24, 0x00),
1335     "scarlett": (0x95, 0x00, 0x15),
1336     "scarpa flow": (0x58, 0x55, 0x62),
1337     "schist": (0xA9, 0xB4, 0x97),
1338     "school bus yellow": (0xFF, 0xD8, 0x00),
1339     "schooner": (0x8B, 0x84, 0x7E),
1340     "science blue": (0x00, 0x66, 0xCC),
1341     "scooter": (0x2E, 0xBF, 0xD4),
1342     "scorpion": (0x69, 0x5F, 0x62),
1343     "scotch mist": (0xFF, 0xFB, 0xDC),
1344     "screamin' green": (0x66, 0xFF, 0x66),
1345     "sea buckthorn": (0xFB, 0xA1, 0x29),
1346     "sea green": (0x2E, 0x8B, 0x57),
1347     "sea mist": (0xC5, 0xDB, 0xCA),
1348     "sea nymph": (0x78, 0xA3, 0x9C),
1349     "sea pink": (0xED, 0x98, 0x9E),
1350     "seagull": (0x80, 0xCC, 0xEA),
1351     "seance": (0x73, 0x1E, 0x8F),
1352     "seashell peach": (0xFF, 0xF5, 0xEE),
1353     "seashell": (0xF1, 0xF1, 0xF1),
1354     "seaweed": (0x1B, 0x2F, 0x11),
1355     "selago": (0xF0, 0xEE, 0xFD),
1356     "selective yellow": (0xFF, 0xBA, 0x00),
1357     "sepia black": (0x2B, 0x02, 0x02),
1358     "sepia skin": (0x9E, 0x5B, 0x40),
1359     "sepia": (0x70, 0x42, 0x14),
1360     "serenade": (0xFF, 0xF4, 0xE8),
1361     "shadow green": (0x9A, 0xC2, 0xB8),
1362     "shadow": (0x83, 0x70, 0x50),
1363     "shady lady": (0xAA, 0xA5, 0xA9),
1364     "shakespeare": (0x4E, 0xAB, 0xD1),
1365     "shalimar": (0xFB, 0xFF, 0xBA),
1366     "shamrock": (0x33, 0xCC, 0x99),
1367     "shark": (0x25, 0x27, 0x2C),
1368     "sherpa blue": (0x00, 0x49, 0x50),
1369     "sherwood green": (0x02, 0x40, 0x2C),
1370     "shilo": (0xE8, 0xB9, 0xB3),
1371     "shingle fawn": (0x6B, 0x4E, 0x31),
1372     "ship cove": (0x78, 0x8B, 0xBA),
1373     "ship gray": (0x3E, 0x3A, 0x44),
1374     "shiraz": (0xB2, 0x09, 0x31),
1375     "shocking pink": (0xFC, 0x0F, 0xC0),
1376     "shocking": (0xE2, 0x92, 0xC0),
1377     "shuttle gray": (0x5F, 0x66, 0x72),
1378     "siam": (0x64, 0x6A, 0x54),
1379     "sidecar": (0xF3, 0xE7, 0xBB),
1380     "sienna": (0xA0, 0x52, 0x2D),
1381     "silk": (0xBD, 0xB1, 0xA8),
1382     "silver chalice": (0xAC, 0xAC, 0xAC),
1383     "silver rust": (0xC9, 0xC0, 0xBB),
1384     "silver sand": (0xBF, 0xC1, 0xC2),
1385     "silver tree": (0x66, 0xB5, 0x8F),
1386     "silver": (0xC0, 0xC0, 0xC0),
1387     "sinbad": (0x9F, 0xD7, 0xD3),
1388     "siren": (0x7A, 0x01, 0x3A),
1389     "sirocco": (0x71, 0x80, 0x80),
1390     "sisal": (0xD3, 0xCB, 0xBA),
1391     "skeptic": (0xCA, 0xE6, 0xDA),
1392     "sky blue": (0x76, 0xD7, 0xEA),
1393     "slate blue": (0x6A, 0x5A, 0xCD),
1394     "slate gray": (0x70, 0x80, 0x90),
1395     "smalt blue": (0x51, 0x80, 0x8F),
1396     "smalt": (0x00, 0x33, 0x99),
1397     "smoky": (0x60, 0x5B, 0x73),
1398     "snow drift": (0xF7, 0xFA, 0xF7),
1399     "snow flurry": (0xE4, 0xFF, 0xD1),
1400     "snow": (0xFF, 0xFA, 0xFA),
1401     "snowy mint": (0xD6, 0xFF, 0xDB),
1402     "snuff": (0xE2, 0xD8, 0xED),
1403     "soapstone": (0xFF, 0xFB, 0xF9),
1404     "soft amber": (0xD1, 0xC6, 0xB4),
1405     "soft peach": (0xF5, 0xED, 0xEF),
1406     "solid pink": (0x89, 0x38, 0x43),
1407     "solitaire": (0xFE, 0xF8, 0xE2),
1408     "solitude": (0xEA, 0xF6, 0xFF),
1409     "sorbus": (0xFD, 0x7C, 0x07),
1410     "sorrell brown": (0xCE, 0xB9, 0x8F),
1411     "soya bean": (0x6A, 0x60, 0x51),
1412     "spanish green": (0x81, 0x98, 0x85),
1413     "spectra": (0x2F, 0x5A, 0x57),
1414     "spice": (0x6A, 0x44, 0x2E),
1415     "spicy mix": (0x88, 0x53, 0x42),
1416     "spicy mustard": (0x74, 0x64, 0x0D),
1417     "spicy pink": (0x81, 0x6E, 0x71),
1418     "spindle": (0xB6, 0xD1, 0xEA),
1419     "spray": (0x79, 0xDE, 0xEC),
1420     "spring green": (0x00, 0xFF, 0x7F),
1421     "spring leaves": (0x57, 0x83, 0x63),
1422     "spring rain": (0xAC, 0xCB, 0xB1),
1423     "spring sun": (0xF6, 0xFF, 0xDC),
1424     "spring wood": (0xF8, 0xF6, 0xF1),
1425     "sprout": (0xC1, 0xD7, 0xB0),
1426     "spun pearl": (0xAA, 0xAB, 0xB7),
1427     "squirrel": (0x8F, 0x81, 0x76),
1428     "st tropaz": (0x2D, 0x56, 0x9B),
1429     "stack": (0x8A, 0x8F, 0x8A),
1430     "star dust": (0x9F, 0x9F, 0x9C),
1431     "stark white": (0xE5, 0xD7, 0xBD),
1432     "starship": (0xEC, 0xF2, 0x45),
1433     "steel blue": (0x46, 0x82, 0xB4),
1434     "steel gray": (0x26, 0x23, 0x35),
1435     "stiletto": (0x9C, 0x33, 0x36),
1436     "stonewall": (0x92, 0x85, 0x73),
1437     "storm dust": (0x64, 0x64, 0x63),
1438     "storm gray": (0x71, 0x74, 0x86),
1439     "stratos": (0x00, 0x07, 0x41),
1440     "straw": (0xD4, 0xBF, 0x8D),
1441     "strikemaster": (0x95, 0x63, 0x87),
1442     "stromboli": (0x32, 0x5D, 0x52),
1443     "studio": (0x71, 0x4A, 0xB2),
1444     "submarine": (0xBA, 0xC7, 0xC9),
1445     "sugar cane": (0xF9, 0xFF, 0xF6),
1446     "sulu": (0xC1, 0xF0, 0x7C),
1447     "summer green": (0x96, 0xBB, 0xAB),
1448     "sun": (0xFB, 0xAC, 0x13),
1449     "sundance": (0xC9, 0xB3, 0x5B),
1450     "sundown": (0xFF, 0xB1, 0xB3),
1451     "sunflower": (0xE4, 0xD4, 0x22),
1452     "sunglo": (0xE1, 0x68, 0x65),
1453     "sunglow": (0xFF, 0xCC, 0x33),
1454     "sunset orange": (0xFE, 0x4C, 0x40),
1455     "sunshade": (0xFF, 0x9E, 0x2C),
1456     "supernova": (0xFF, 0xC9, 0x01),
1457     "surf crest": (0xCF, 0xE5, 0xD2),
1458     "surf": (0xBB, 0xD7, 0xC1),
1459     "surfie green": (0x0C, 0x7A, 0x79),
1460     "sushi": (0x87, 0xAB, 0x39),
1461     "suva gray": (0x88, 0x83, 0x87),
1462     "swamp green": (0xAC, 0xB7, 0x8E),
1463     "swamp": (0x00, 0x1B, 0x1C),
1464     "swans down": (0xDC, 0xF0, 0xEA),
1465     "sweet corn": (0xFB, 0xEA, 0x8C),
1466     "sweet pink": (0xFD, 0x9F, 0xA2),
1467     "swirl": (0xD3, 0xCD, 0xC5),
1468     "swiss coffee": (0xDD, 0xD6, 0xD5),
1469     "sycamore": (0x90, 0x8D, 0x39),
1470     "tabasco": (0xA0, 0x27, 0x12),
1471     "tacao": (0xED, 0xB3, 0x81),
1472     "tacha": (0xD6, 0xC5, 0x62),
1473     "tahiti gold": (0xE9, 0x7C, 0x07),
1474     "tahuna sands": (0xEE, 0xF0, 0xC8),
1475     "tall poppy": (0xB3, 0x2D, 0x29),
1476     "tallow": (0xA8, 0xA5, 0x89),
1477     "tamarillo": (0x99, 0x16, 0x13),
1478     "tamarind": (0x34, 0x15, 0x15),
1479     "tan hide": (0xFA, 0x9D, 0x5A),
1480     "tan": (0xD2, 0xB4, 0x8C),
1481     "tana": (0xD9, 0xDC, 0xC1),
1482     "tangaroa": (0x03, 0x16, 0x3C),
1483     "tangerine": (0xF2, 0x85, 0x00),
1484     "tango": (0xED, 0x7A, 0x1C),
1485     "tapa": (0x7B, 0x78, 0x74),
1486     "tapestry": (0xB0, 0x5E, 0x81),
1487     "tara": (0xE1, 0xF6, 0xE8),
1488     "tarawera": (0x07, 0x3A, 0x50),
1489     "tasman": (0xCF, 0xDC, 0xCF),
1490     "taupe gray": (0xB3, 0xAF, 0x95),
1491     "taupe": (0x48, 0x3C, 0x32),
1492     "tawny port": (0x69, 0x25, 0x45),
1493     "te papa green": (0x1E, 0x43, 0x3C),
1494     "tea green": (0xD0, 0xF0, 0xC0),
1495     "tea": (0xC1, 0xBA, 0xB0),
1496     "teak": (0xB1, 0x94, 0x61),
1497     "teal blue": (0x04, 0x42, 0x59),
1498     "teal": (0x00, 0x80, 0x80),
1499     "temptress": (0x3B, 0x00, 0x0B),
1500     "tenn": (0xCD, 0x57, 0x00),
1501     "tequila": (0xFF, 0xE6, 0xC7),
1502     "terracotta": (0xE2, 0x72, 0x5B),
1503     "texas rose": (0xFF, 0xB5, 0x55),
1504     "texas": (0xF8, 0xF9, 0x9C),
1505     "thatch green": (0x40, 0x3D, 0x19),
1506     "thatch": (0xB6, 0x9D, 0x98),
1507     "thistle green": (0xCC, 0xCA, 0xA8),
1508     "thistle": (0xD8, 0xBF, 0xD8),
1509     "thunder": (0x33, 0x29, 0x2F),
1510     "thunderbird": (0xC0, 0x2B, 0x18),
1511     "tia maria": (0xC1, 0x44, 0x0E),
1512     "tiara": (0xC3, 0xD1, 0xD1),
1513     "tiber": (0x06, 0x35, 0x37),
1514     "tickle me pink": (0xFC, 0x80, 0xA5),
1515     "tidal": (0xF1, 0xFF, 0xAD),
1516     "tide": (0xBF, 0xB8, 0xB0),
1517     "timber green": (0x16, 0x32, 0x2C),
1518     "timberwolf": (0xD9, 0xD6, 0xCF),
1519     "titan white": (0xF0, 0xEE, 0xFF),
1520     "toast": (0x9A, 0x6E, 0x61),
1521     "tobacco brown": (0x71, 0x5D, 0x47),
1522     "toledo": (0x3A, 0x00, 0x20),
1523     "tolopea": (0x1B, 0x02, 0x45),
1524     "tom thumb": (0x3F, 0x58, 0x3B),
1525     "tomato": (0xFF, 0x63, 0x47),
1526     "tonys pink": (0xE7, 0x9F, 0x8C),
1527     "topaz": (0x7C, 0x77, 0x8A),
1528     "torch red": (0xFD, 0x0E, 0x35),
1529     "torea bay": (0x0F, 0x2D, 0x9E),
1530     "tory blue": (0x14, 0x50, 0xAA),
1531     "tosca": (0x8D, 0x3F, 0x3F),
1532     "totem pole": (0x99, 0x1B, 0x07),
1533     "tower gray": (0xA9, 0xBD, 0xBF),
1534     "tradewind": (0x5F, 0xB3, 0xAC),
1535     "tranquil": (0xE6, 0xFF, 0xFF),
1536     "travertine": (0xFF, 0xFD, 0xE8),
1537     "tree poppy": (0xFC, 0x9C, 0x1D),
1538     "treehouse": (0x3B, 0x28, 0x20),
1539     "trendy green": (0x7C, 0x88, 0x1A),
1540     "trendy pink": (0x8C, 0x64, 0x95),
1541     "trinidad": (0xE6, 0x4E, 0x03),
1542     "tropical blue": (0xC3, 0xDD, 0xF9),
1543     "tropical rain forest": (0x00, 0x75, 0x5E),
1544     "trout": (0x4A, 0x4E, 0x5A),
1545     "true v": (0x8A, 0x73, 0xD6),
1546     "tuatara": (0x36, 0x35, 0x34),
1547     "tuft bush": (0xFF, 0xDD, 0xCD),
1548     "tulip tree": (0xEA, 0xB3, 0x3B),
1549     "tumbleweed": (0xDE, 0xA6, 0x81),
1550     "tuna": (0x35, 0x35, 0x42),
1551     "tundora": (0x4A, 0x42, 0x44),
1552     "turbo": (0xFA, 0xE6, 0x00),
1553     "turkish rose": (0xB5, 0x72, 0x81),
1554     "turmeric": (0xCA, 0xBB, 0x48),
1555     "turquoise blue": (0x6C, 0xDA, 0xE7),
1556     "turquoise": (0x30, 0xD5, 0xC8),
1557     "turtle green": (0x2A, 0x38, 0x0B),
1558     "tuscany": (0xBD, 0x5E, 0x2E),
1559     "tusk": (0xEE, 0xF3, 0xC3),
1560     "tussock": (0xC5, 0x99, 0x4B),
1561     "tutu": (0xFF, 0xF1, 0xF9),
1562     "twilight blue": (0xEE, 0xFD, 0xFF),
1563     "twilight": (0xE4, 0xCF, 0xDE),
1564     "twine": (0xC2, 0x95, 0x5D),
1565     "tyrian purple": (0x66, 0x02, 0x3C),
1566     "ultramarine": (0x12, 0x0A, 0x8F),
1567     "valencia": (0xD8, 0x44, 0x37),
1568     "valentino": (0x35, 0x0E, 0x42),
1569     "valhalla": (0x2B, 0x19, 0x4F),
1570     "van cleef": (0x49, 0x17, 0x0C),
1571     "vanilla ice": (0xF3, 0xD9, 0xDF),
1572     "vanilla": (0xD1, 0xBE, 0xA8),
1573     "varden": (0xFF, 0xF6, 0xDF),
1574     "venetian red": (0x72, 0x01, 0x0F),
1575     "venice blue": (0x05, 0x59, 0x89),
1576     "venus": (0x92, 0x85, 0x90),
1577     "verdigris": (0x5D, 0x5E, 0x37),
1578     "verdun green": (0x49, 0x54, 0x00),
1579     "vermilion": (0xFF, 0x4D, 0x00),
1580     "vesuvius": (0xB1, 0x4A, 0x0B),
1581     "victoria": (0x53, 0x44, 0x91),
1582     "vida loca": (0x54, 0x90, 0x19),
1583     "viking": (0x64, 0xCC, 0xDB),
1584     "vin rouge": (0x98, 0x3D, 0x61),
1585     "viola": (0xCB, 0x8F, 0xA9),
1586     "violent violet": (0x29, 0x0C, 0x5E),
1587     "violet eggplant": (0x99, 0x11, 0x99),
1588     "violet red": (0xF7, 0x46, 0x8A),
1589     "violet": (0x24, 0x0A, 0x40),
1590     "viridian green": (0x67, 0x89, 0x75),
1591     "viridian": (0x40, 0x82, 0x6D),
1592     "vis vis": (0xFF, 0xEF, 0xA1),
1593     "vista blue": (0x8F, 0xD6, 0xB4),
1594     "vista white": (0xFC, 0xF8, 0xF7),
1595     "vivid tangerine": (0xFF, 0x99, 0x80),
1596     "vivid violet": (0x80, 0x37, 0x90),
1597     "voodoo": (0x53, 0x34, 0x55),
1598     "vulcan": (0x10, 0x12, 0x1D),
1599     "wafer": (0xDE, 0xCB, 0xC6),
1600     "waikawa gray": (0x5A, 0x6E, 0x9C),
1601     "waiouru": (0x36, 0x3C, 0x0D),
1602     "walnut": (0x77, 0x3F, 0x1A),
1603     "wannabe.house": (0x00, 0x00, 95),
1604     "wasabi": (0x78, 0x8A, 0x25),
1605     "water leaf": (0xA1, 0xE9, 0xDE),
1606     "watercourse": (0x05, 0x6F, 0x57),
1607     "waterloo ": (0x7B, 0x7C, 0x94),
1608     "wattle": (0xDC, 0xD7, 0x47),
1609     "watusi": (0xFF, 0xDD, 0xCF),
1610     "wax flower": (0xFF, 0xC0, 0xA8),
1611     "we peep": (0xF7, 0xDB, 0xE6),
1612     "web orange": (0xFF, 0xA5, 0x00),
1613     "wedgewood": (0x4E, 0x7F, 0x9E),
1614     "well read": (0xB4, 0x33, 0x32),
1615     "west coast": (0x62, 0x51, 0x19),
1616     "west side": (0xFF, 0x91, 0x0F),
1617     "westar": (0xDC, 0xD9, 0xD2),
1618     "wewak": (0xF1, 0x9B, 0xAB),
1619     "wheat": (0xF5, 0xDE, 0xB3),
1620     "wheatfield": (0xF3, 0xED, 0xCF),
1621     "whiskey": (0xD5, 0x9A, 0x6F),
1622     "whisper": (0xF7, 0xF5, 0xFA),
1623     "white ice": (0xDD, 0xF9, 0xF1),
1624     "white lilac": (0xF8, 0xF7, 0xFC),
1625     "white linen": (0xF8, 0xF0, 0xE8),
1626     "white pointer": (0xFE, 0xF8, 0xFF),
1627     "white rock": (0xEA, 0xE8, 0xD4),
1628     "white smoke": (0xF5, 0xF5, 0xF5),
1629     "white": (0xFF, 0xFF, 0xFF),
1630     "wild blue yonder": (0x7A, 0x89, 0xB8),
1631     "wild rice": (0xEC, 0xE0, 0x90),
1632     "wild sand": (0xF4, 0xF4, 0xF4),
1633     "wild strawberry": (0xFF, 0x33, 0x99),
1634     "wild watermelon": (0xFD, 0x5B, 0x78),
1635     "wild willow": (0xB9, 0xC4, 0x6A),
1636     "william": (0x3A, 0x68, 0x6C),
1637     "willow brook": (0xDF, 0xEC, 0xDA),
1638     "willow grove": (0x65, 0x74, 0x5D),
1639     "windsor": (0x3C, 0x08, 0x78),
1640     "wine berry": (0x59, 0x1D, 0x35),
1641     "winter hazel": (0xD5, 0xD1, 0x95),
1642     "wisp pink": (0xFE, 0xF4, 0xF8),
1643     "wisteria": (0x97, 0x71, 0xB5),
1644     "wistful": (0xA4, 0xA6, 0xD3),
1645     "witch haze": (0xFF, 0xFC, 0x99),
1646     "wood bark": (0x26, 0x11, 0x05),
1647     "woodland": (0x4D, 0x53, 0x28),
1648     "woodrush": (0x30, 0x2A, 0x0F),
1649     "woodsmoke": (0x0C, 0x0D, 0x0F),
1650     "woody brown": (0x48, 0x31, 0x31),
1651     "xanadu": (0x73, 0x86, 0x78),
1652     "yellow green": (0xC5, 0xE1, 0x7A),
1653     "yellow metal": (0x71, 0x63, 0x38),
1654     "yellow orange": (0xFF, 0xAE, 0x42),
1655     "yellow sea": (0xFE, 0xA9, 0x04),
1656     "yellow": (0xFF, 0xFF, 0x00),
1657     "your pink": (0xFF, 0xC3, 0xC0),
1658     "yukon gold": (0x7B, 0x66, 0x08),
1659     "yuma": (0xCE, 0xC2, 0x91),
1660     "zambezi": (0x68, 0x55, 0x58),
1661     "zanah": (0xDA, 0xEC, 0xD6),
1662     "zest": (0xE5, 0x84, 0x1B),
1663     "zeus": (0x29, 0x23, 0x19),
1664     "ziggurat": (0xBF, 0xDB, 0xE2),
1665     "zinnwaldite": (0xEB, 0xC2, 0xAF),
1666     "zircon": (0xF4, 0xF8, 0xFF),
1667     "zombie": (0xE4, 0xD6, 0x9B),
1668     "zorba": (0xA5, 0x9B, 0x91),
1669     "zuccini": (0x04, 0x40, 0x22),
1670     "zumthor": (0xED, 0xF6, 0xFF),
1671 }
1672
1673
1674 def clear() -> str:
1675     """Clear screen ANSI escape sequence"""
1676     return "\e[H\e[2J"
1677
1678
1679 def clear_screen() -> str:
1680     """Clear screen ANSI escape sequence"""
1681     return "\e[H\e[2J"
1682
1683
1684 def clear_line() -> str:
1685     """Clear the current line ANSI escape sequence"""
1686     return "\e[2K\r"
1687
1688
1689 def reset() -> str:
1690     """Reset text attributes to 'normal'"""
1691     return "\e[m"
1692
1693
1694 def normal() -> str:
1695     """Reset text attributes to 'normal'"""
1696     return "\e[m"
1697
1698
1699 def bold() -> str:
1700     """Set text to bold"""
1701     return "\e[1m"
1702
1703
1704 def italic() -> str:
1705     """Set text to italic"""
1706     return "\e[3m"
1707
1708
1709 def italics() -> str:
1710     """Set text to italic"""
1711     return italic()
1712
1713
1714 def underline() -> str:
1715     """Set text to underline"""
1716     return "\e[4m"
1717
1718
1719 def strikethrough() -> str:
1720     """Set text to strikethrough"""
1721     return "\e[9m"
1722
1723
1724 def strike_through() -> str:
1725     """Set text to strikethrough"""
1726     return strikethrough()
1727
1728
1729 def is_16color(num: int) -> bool:
1730     """Is num a valid 16 color number?"""
1731     return num in (255, 128)
1732
1733
1734 def is_216color(num: int) -> bool:
1735     """Is num a valid 256 color number?"""
1736     return num in set([0, 95, 135, 175, 223, 255])
1737
1738
1739 def _simple_color_number(red: int, green: int, blue: int) -> int:
1740     """Construct a simple color number"""
1741     r = red > 0
1742     g = green > 0
1743     b = blue > 0
1744     return b << 2 | g << 1 | r
1745
1746
1747 def fg_16color(red: int, green: int, blue: int) -> str:
1748     """Set foreground color using 16 color mode"""
1749     code = _simple_color_number(red, green, blue) + 30
1750     bright_count = 0
1751     if red > 128:
1752         bright_count += 1
1753     if green > 128:
1754         bright_count += 1
1755     if blue > 128:
1756         bright_count += 1
1757     if bright_count > 1:
1758         code += 60
1759     return f"\e[{code}m"
1760
1761
1762 def bg_16color(red: int, green: int, blue: int) -> str:
1763     """Set background using 16 color mode"""
1764     code = _simple_color_number(red, green, blue) + 40
1765     bright_count = 0
1766     if red > 128:
1767         bright_count += 1
1768     if green > 128:
1769         bright_count += 1
1770     if blue > 128:
1771         bright_count += 1
1772     if bright_count > 1:
1773         code += 60
1774     return f"\e[{code}m"
1775
1776
1777 def _pixel_to_216color(n: int) -> int:
1778     if n >= 255:
1779         return 5
1780     if n >= 233:
1781         return 4
1782     if n >= 175:
1783         return 3
1784     if n >= 135:
1785         return 2
1786     if n >= 95:
1787         return 1
1788     return 0
1789
1790
1791 def fg_216color(red: int, green: int, blue: int) -> str:
1792     """Set foreground using 216 color mode"""
1793     r = _pixel_to_216color(red)
1794     g = _pixel_to_216color(green)
1795     b = _pixel_to_216color(blue)
1796     code = 16 + r * 36 + g * 6 + b
1797     return f"\e[38;5;{code}m"
1798
1799
1800 def bg_216color(red: int, green: int, blue: int) -> str:
1801     """Set background using 216 color mode"""
1802     r = _pixel_to_216color(red)
1803     g = _pixel_to_216color(green)
1804     b = _pixel_to_216color(blue)
1805     code = 16 + r * 36 + g * 6 + b
1806     return f"\e[48;5;{code}m"
1807
1808
1809 def fg_24bit(red: int, green: int, blue: int) -> str:
1810     """Set foreground using 24bit color mode"""
1811     return f"\e[38;2;{red};{green};{blue}m"
1812
1813
1814 def bg_24bit(red: int, green: int, blue: int) -> str:
1815     """Set background using 24bit color mode"""
1816     return f"\e[48;2;{red};{green};{blue}m"
1817
1818
1819 def _find_color_by_name(name: str) -> Tuple[int, int, int]:
1820     rgb = COLOR_NAMES_TO_RGB.get(name.lower(), None)
1821     if rgb is None:
1822         name = guess_name(name)
1823         rgb = COLOR_NAMES_TO_RGB.get(name.lower(), None)
1824         assert rgb is not None
1825     return rgb
1826
1827
1828 @logging_utils.squelch_repeated_log_messages(1)
1829 def fg(
1830     name: Optional[str] = "",
1831     red: Optional[int] = None,
1832     green: Optional[int] = None,
1833     blue: Optional[int] = None,
1834     *,
1835     force_16color: bool = False,
1836     force_216color: bool = False,
1837 ) -> str:
1838     """Return the ANSI escape sequence to change the foreground color
1839     being printed.  Target colors may be indicated by name or R/G/B.
1840     Result will use the 16 or 216 color scheme if force_16color or
1841     force_216color are passed (respectively).  Otherwise the code will
1842     do what it thinks best.
1843
1844     Args:
1845         name: the name of the color to set
1846         red: the color to set's red component value
1847         green: the color to set's green component value
1848         blue: the color to set's blue component value
1849         force_16color: force fg to use 16 color mode
1850         force_216color: force fg to use 216 color mode
1851
1852     Returns:
1853         String containing the ANSI escape sequence to set desired foreground
1854
1855     >>> import string_utils as su
1856     >>> su.to_base64(fg('blue'))
1857     b'G1szODs1OzIxbQ==\\n'
1858     """
1859     if name is not None and name == 'reset':
1860         return '\033[39m'
1861
1862     if name is not None and string_utils.is_full_string(name):
1863         rgb = _find_color_by_name(name)
1864         return fg(
1865             None,
1866             rgb[0],
1867             rgb[1],
1868             rgb[2],
1869             force_16color=force_16color,
1870             force_216color=force_216color,
1871         )
1872
1873     if red is None:
1874         red = 0
1875     if green is None:
1876         green = 0
1877     if blue is None:
1878         blue = 0
1879     if (is_16color(red) and is_16color(green) and is_16color(blue)) or force_16color:
1880         logger.debug("Using 16-color strategy")
1881         return fg_16color(red, green, blue)
1882     if (
1883         is_216color(red) and is_216color(green) and is_216color(blue)
1884     ) or force_216color:
1885         logger.debug("Using 216-color strategy")
1886         return fg_216color(red, green, blue)
1887     logger.debug("Using 24-bit color strategy")
1888     return fg_24bit(red, green, blue)
1889
1890
1891 def reset_fg():
1892     return '\033[39m'
1893
1894
1895 def _rgb_to_yiq(rgb: Tuple[int, int, int]) -> int:
1896     return (rgb[0] * 299 + rgb[1] * 587 + rgb[2] * 114) // 1000
1897
1898
1899 def _contrast(rgb: Tuple[int, int, int]) -> Tuple[int, int, int]:
1900     if _rgb_to_yiq(rgb) < 128:
1901         return (0xFF, 0xFF, 0xFF)
1902     return (0, 0, 0)
1903
1904
1905 def pick_contrasting_color(
1906     name: Optional[str] = "",
1907     red: Optional[int] = None,
1908     green: Optional[int] = None,
1909     blue: Optional[int] = None,
1910 ) -> Tuple[int, int, int]:
1911     """This method will return a red, green, blue tuple representing a
1912     contrasting color given the red, green, blue of a background
1913     color or a color name of the background color.
1914
1915     Args:
1916         name: the name of the color to contrast
1917         red: the color to contrast's red component value
1918         green: the color to contrast's green component value
1919         blue: the color to contrast's blue component value
1920
1921     Returns:
1922         An RGB tuple containing a contrasting color
1923
1924     >>> pick_contrasting_color(None, 20, 20, 20)
1925     (255, 255, 255)
1926
1927     >>> pick_contrasting_color("white")
1928     (0, 0, 0)
1929
1930     """
1931     if name is not None and string_utils.is_full_string(name):
1932         rgb = _find_color_by_name(name)
1933     else:
1934         r = red if red is not None else 0
1935         g = green if green is not None else 0
1936         b = blue if blue is not None else 0
1937         rgb = (r, g, b)
1938     assert rgb is not None
1939     return _contrast(rgb)
1940
1941
1942 def guess_name(name: str) -> str:
1943     """Try to guess what color the user is talking about"""
1944     best_guess = None
1945     max_ratio = None
1946     for possibility in COLOR_NAMES_TO_RGB:
1947         r = difflib.SequenceMatcher(None, name, possibility).ratio()
1948         if max_ratio is None or r > max_ratio:
1949             max_ratio = r
1950             best_guess = possibility
1951     assert best_guess is not None
1952     logger.debug("Best guess at color name is %s", best_guess)
1953     return best_guess
1954
1955
1956 @logging_utils.squelch_repeated_log_messages(1)
1957 def bg(
1958     name: Optional[str] = "",
1959     red: Optional[int] = None,
1960     green: Optional[int] = None,
1961     blue: Optional[int] = None,
1962     *,
1963     force_16color: bool = False,
1964     force_216color: bool = False,
1965 ) -> str:
1966     """Returns an ANSI color code for changing the current background
1967     color.
1968
1969     Args:
1970         name: the name of the color to set
1971         red: the color to set's red component value
1972         green: the color to set's green component value
1973         blue: the color to set's blue component value
1974         force_16color: force bg to use 16 color mode
1975         force_216color: force bg to use 216 color mode
1976
1977     >>> import string_utils as su
1978     >>> su.to_base64(bg("red"))    # b'\x1b[48;5;196m'
1979     b'G1s0ODs1OzE5Nm0=\\n'
1980     """
1981     if name is not None and name == 'reset':
1982         return '\033[49m'
1983
1984     if name is not None and string_utils.is_full_string(name):
1985         rgb = _find_color_by_name(name)
1986         return bg(
1987             None,
1988             rgb[0],
1989             rgb[1],
1990             rgb[2],
1991             force_16color=force_16color,
1992             force_216color=force_216color,
1993         )
1994     if red is None:
1995         red = 0
1996     if green is None:
1997         green = 0
1998     if blue is None:
1999         blue = 0
2000     if (is_16color(red) and is_16color(green) and is_16color(blue)) or force_16color:
2001         logger.debug("Using 16-color strategy")
2002         return bg_16color(red, green, blue)
2003     if (
2004         is_216color(red) and is_216color(green) and is_216color(blue)
2005     ) or force_216color:
2006         logger.debug("Using 216-color strategy")
2007         return bg_216color(red, green, blue)
2008     logger.debug("Using 24-bit color strategy")
2009     return bg_24bit(red, green, blue)
2010
2011
2012 def reset_bg():
2013     return '\033[49m'
2014
2015
2016 class StdoutInterceptor(io.TextIOBase, contextlib.AbstractContextManager):
2017     """An interceptor for data written to stdout.  Use as a context."""
2018
2019     def __init__(self):
2020         super().__init__()
2021         self.saved_stdout: io.TextIO = None
2022         self.buf = ''
2023
2024     @abstractmethod
2025     def write(self, s: str):
2026         pass
2027
2028     def __enter__(self):
2029         self.saved_stdout = sys.stdout
2030         sys.stdout = self
2031         return self
2032
2033     def __exit__(self, *args) -> Literal[False]:
2034         sys.stdout = self.saved_stdout
2035         print(self.buf)
2036         return False
2037
2038
2039 class ProgrammableColorizer(StdoutInterceptor):
2040     """A colorizing interceptor; pass it re.Patterns -> methods that do
2041     something (usually add color to) the match.
2042
2043     """
2044
2045     def __init__(
2046         self,
2047         patterns: Iterable[Tuple[re.Pattern, Callable[[Any, re.Pattern], str]]],
2048     ):
2049         super().__init__()
2050         self.patterns = list(patterns)
2051
2052     @overrides
2053     def write(self, s: str):
2054         for pattern in self.patterns:
2055             s = pattern[0].sub(pattern[1], s)
2056         self.buf += s
2057
2058
2059 if __name__ == '__main__':
2060
2061     def main() -> None:
2062         import doctest
2063
2064         doctest.testmod()
2065
2066         name = " ".join(sys.argv[1:])
2067         for possibility in COLOR_NAMES_TO_RGB:
2068             if name in possibility:
2069                 f = fg(possibility)
2070                 b = bg(possibility)
2071                 _ = pick_contrasting_color(possibility)
2072                 xf = fg(None, _[0], _[1], _[2])
2073                 xb = bg(None, _[0], _[1], _[2])
2074                 print(
2075                     f'{f}{xb}{possibility}{reset()}\t\t\t'
2076                     f'{b}{xf}{possibility}{reset()}'
2077                 )
2078
2079     main()