Completed
Push — master ( ad18f5...2cbe85 )
by Yılmaz
02:41
created

Color::generateName()   A

Complexity

Conditions 4
Paths 6

Size

Total Lines 20
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 14
CRAP Score 4

Importance

Changes 0
Metric Value
dl 0
loc 20
ccs 14
cts 14
cp 1
rs 9.2
c 0
b 0
f 0
cc 4
eloc 11
nc 6
nop 1
crap 4
1
<?php
2
/**
3
 * Represents a color code with a sort of helpful methods.
4
 *
5
 * Provides a programatically generated, human-readable 
6
 * name for the color such as #FFF => 'White'
7
 * 
8
 * Partially implements the flow in this good SO answer:
9
 * @see http://stackoverflow.com/a/2994015/199593
10
 * 
11
 * @author  M. Yilmaz SUSLU <[email protected]>
12
 * @license MIT
13
 *
14
 * @since   Oct 2016
15
 */
16
namespace DDD\Embeddable;
17
18
use Doctrine\ORM\Mapping as ORM;
19
use JsonSerializable;
20
21
/**
22
 * @ORM\Embeddable
23
 */
24
class Color implements JsonSerializable
25
{
26
    /**
27
     * persistable, hexedecimal representation of the color
28
     *
29
     * Persisted hex value is always uppercased and 
30
     * doesn't contains a '#' prefix.
31
     *
32
     * @ORM\Column(type="string", length=6, nullable=true)
33
     * 
34
     * @var array
35
     */
36
    private $color;
37
38
    /**
39
     * Constructor
40
     *
41
     * @throws \InvalidArgumentException;
42
     * 
43
     * @param string $hex
44
     */
45 24
    public function __construct($hex)
46
    {
47 24
        $hex = $this->normalize($hex);
48
49 24
        if(!$this->isValidHex($hex)) {
50 8
            throw new \InvalidArgumentException(sprintf('Given hex value %s is invalid', $hex));
51
        }
52
53 16
        $this->color = $hex;
0 ignored issues
show
Documentation Bug introduced by
It seems like $hex of type string is incompatible with the declared type array of property $color.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
54 16
    }
55
56
    /**
57
     * Returns the color in hexedecimal format
58
     *
59
     * @return string
60
     */
61 16
    public function toHex()
62
    {
63 16
        return '#'.$this->color;
64
    }
65
66
    /**
67
     * Returns the color in RGB format
68
     *
69
     * @return array
70
     */
71 7
    public function toRGB()
72
    {
73 7
        list($r, $g, $b) = sscanf($this->color, "%02x%02x%02x");
74 7
        return [ $r, $g, $b ];
75
    }
76
77
    /**
78
     * Returns the color as RGB string
79
     *
80
     * Example: "rgb(60,60,240)"
81
     * 
82
     * @return string
83
     */
84 1
    public function toRGBString()
85
    {
86 1
        $rgb = $this->toRGB();
87
88 1
        return 'rgb('.implode(',', $rgb).')';
89
    }
90
91 7
    public function getName()
92
    {
93 7
        return $this->generateName($this->toRGB());
94
    }
95
96
    /**
97
     * Array representation of the geo point
98
     * 
99
     * @return array
100
     */
101 7
    public function toArray()
102
    {
103 7
        $rgb = $this->toRGB();
104
        return [
105 7
            'hex' => $this->toHex(),
106 7
            'rgb' => $rgb,
107 7
            'name' => $this->getName(),
108 7
        ];
109
    }
110
111
    /**
112
     * Implement json serializable interface.
113
     * 
114
     * @return array
115
     */
116 1
    public function jsonSerialize()
117
    {
118 1
        return $this->toArray();
119
    }
120
121
    /**
122
     * Creates a new Color instance from r,g,b values.
123
     * 
124
     * @param  int $r Red
125
     * @param  int $g Green
126
     * @param  int $b Blue
127
     * 
128
     * @return self
129
     */
130 1
    public static function fromRGB($r,$g,$b)
131
    {
132 1
        $hex = dechex($r).dechex($g).dechex($b);
133
134 1
        return new self($hex);
135
    }
136
137
    /**
138
     * String representation of the color, an uppercased hex value.
139
     * 
140
     * @return string Example: #FFCC60
141
     */
142 8
    public function __toString()
143
    {
144 8
        return $this->toHex();
145
    }
146
147
    /**
148
     * Returns distance between two colors.
149
     * 
150
     * @param  array  $color1 RGB color
151
     * @param  array  $color2 RGB color
152
     *
153
     * @see https://stackoverflow.com/questions/4057475/rounding-colours
154
     * 
155
     * @return float
156
     */
157 7
    private function distanceL2(array $color1, array $color2)
158
    {
159 7
        return sqrt(
160 7
            pow($color1[0]-$color2[0], 2) +
161 7
            pow($color1[1]-$color2[1], 2) +
162 7
            pow($color1[2]-$color2[2], 2)
163 7
        );
164
    }
165
166
    /**
167
     * Generates a proper name for given RGB color.
168
     * 
169
     * @return string
170
     */
171 7
    private function generateName(array $rgb)
172
    {
173 7
        $distances = [];
174 7
        foreach ($this->getColorNames() as $name => $rgbValue) {
175 7
            $distances[$name] = $this->distanceL2($rgbValue, $rgb);
176 7
        }
177
178 7
        $mincolor = '';
179 7
        $minval = pow(2, 30); /** A big value */ 
180
181 7
        foreach ($distances as $k => $v) {
182 7
            if ($v < $minval) {
183 7
                $minval = $v;
184 7
                $mincolor = $k;
185 7
            }
186 7
        }
187
188
        // Closest color name to given RGB code
189 7
        return $mincolor;
190
    }
191
192
    /**
193
     * Validates given hex color code, returns a boolean TRUE if it is valid.
194
     * 
195
     * @param  string  $hex Three or six digit HEX code like #FFAC43, #000
196
     * @return boolean      
197
     */
198 24
    private function isValidHex($hex)
199
    {
200
        // Allow both #FFF and #FFFFFF formats
201 24
        return \preg_match('/^[A-F0-9]{6}$/', $hex) || \preg_match('/^[A-F0-9]{3}$/', $hex);
202
    }
203
204
    /**
205
     * Filters and normalizes given hexedecimal color code.
206
     * 
207
     * @param  string $hex An unfiltered hex value.
208
     * 
209
     * @return string
210
     */
211 24
    private function normalize($hex)
212
    {
213
        // Get rid of first # sign if it exists
214 24
        if($hex[0] === '#') {
215 6
            $hex = substr($hex, 1);
216 6
        }
217
218 24
        if(strlen($hex) === 3) {
219
            // Convert to 6 digit version
220 10
            $hex = $hex[0].$hex[0].$hex[1].$hex[1].$hex[2].$hex[2];
221 10
        }
222
223 24
        return strtoupper($hex);
224
    }
225
226
    /**
227
     * Returns a (pretty big) static list of well-known color names
228
     * with their RGB codes.
229
     * 
230
     * Including, caching or requiring these values from an external
231
     * resource is always possible but it would be costly than this.
232
     * 
233
     * Since all PHP classes (files) cached by Opcache in runtime, this will
234
     * run pretty fast on a production box. As a drawback, instance size of Color 
235
     * in memory will be higher (in kilobytes). There is no free lunch.
236
     * 
237
     * For a simple entity which needs just a "color" property (such as Product),
238
     * this value object may fit perfectly. 
239
     * 
240
     * @return array
241
     */
242 7
    private function getColorNames()
243
    {
244
        return [
245 7
           'Acid Green'                                => [176, 191, 26],
246 7
           'Aero'                                      => [124, 185, 232],
247 7
           'Aero Blue'                                 => [201, 255, 229],
248 7
           'African Violet'                            => [178, 132, 190],
249 7
           'Air Force Blue (RAF)'                      => [93, 138, 168],
250 7
           'Air Force Blue (USAF)'                     => [0, 48, 143],
251 7
           'Air Superiority Blue'                      => [114, 160, 193],
252 7
           'Alabama Crimson'                           => [175, 0, 42],
253 7
           'Alice Blue'                                => [240, 248, 255],
254 7
           'Alizarin Crimson'                          => [227, 38, 54],
255 7
           'Alloy Orange'                              => [196, 98, 16],
256 7
           'Almond'                                    => [239, 222, 205],
257 7
           'Amaranth'                                  => [229, 43, 80],
258 7
           'Amaranth Deep Purple'                      => [171, 39, 79],
259 7
           'Amaranth Pink'                             => [241, 156, 187],
260 7
           'Amaranth Purple'                           => [171, 39, 79],
261 7
           'Amaranth Red'                              => [211, 33, 45],
262 7
           'Amazon'                                    => [59, 122, 87],
263 7
           'Amber'                                     => [255, 191, 0],
264 7
           'Amber (SAE/ECE)'                           => [255, 126, 0],
265 7
           'American Rose'                             => [255, 3, 62],
266 7
           'Amethyst'                                  => [153, 102, 204],
267 7
           'Android Green'                             => [164, 198, 57],
268 7
           'Anti-Flash White'                          => [242, 243, 244],
269 7
           'Antique Brass'                             => [205, 149, 117],
270 7
           'Antique Bronze'                            => [102, 93, 30],
271 7
           'Antique Fuchsia'                           => [145, 92, 131],
272 7
           'Antique Ruby'                              => [132, 27, 45],
273 7
           'Antique White'                             => [250, 235, 215],
274 7
           'Ao (English)'                              => [0, 128, 0],
275 7
           'Apple Green'                               => [141, 182, 0],
276 7
           'Apricot'                                   => [251, 206, 177],
277 7
           'Aqua'                                      => [0, 255, 255],
278 7
           'Aquamarine'                                => [127, 255, 212],
279 7
           'Arctic Lime'                               => [208, 255, 20],
280 7
           'Army Green'                                => [75, 83, 32],
281 7
           'Arsenic'                                   => [59, 68, 75],
282 7
           'Artichoke'                                 => [143, 151, 121],
283 7
           'Arylide Yellow'                            => [233, 214, 107],
284 7
           'Ash Grey'                                  => [178, 190, 181],
285 7
           'Asparagus'                                 => [135, 169, 107],
286 7
           'Atomic Tangerine'                          => [255, 153, 102],
287 7
           'Auburn'                                    => [165, 42, 42],
288 7
           'Aureolin'                                  => [253, 238, 0],
289 7
           'AuroMetalSaurus'                           => [110, 127, 128],
290 7
           'Avocado'                                   => [86, 130, 3],
291 7
           'Azure'                                     => [0, 127, 255],
292 7
           'Azure (Web Color)'                         => [240, 255, 255],
293 7
           'Azure Mist'                                => [240, 255, 255],
294 7
           'Azureish White'                            => [219, 233, 244],
295 7
           'Baby Blue'                                 => [137, 207, 240],
296 7
           'Baby Blue Eyes'                            => [161, 202, 241],
297 7
           'Baby Pink'                                 => [244, 194, 194],
298 7
           'Baby Powder'                               => [254, 254, 250],
299 7
           'Baker-Miller Pink'                         => [255, 145, 175],
300 7
           'Ball Blue'                                 => [33, 171, 205],
301 7
           'Banana Mania'                              => [250, 231, 181],
302 7
           'Banana Yellow'                             => [255, 225, 53],
303 7
           'Bangladesh Green'                          => [0, 106, 78],
304 7
           'Barbie Pink'                               => [224, 33, 138],
305 7
           'Barn Red'                                  => [124, 10, 2],
306 7
           'Battleship Grey'                           => [132, 132, 130],
307 7
           'Bazaar'                                    => [152, 119, 123],
308 7
           'Beau Blue'                                 => [188, 212, 230],
309 7
           'Beaver'                                    => [159, 129, 112],
310 7
           'Beige'                                     => [245, 245, 220],
311 7
           'B\'dazzled Blue'                           => [46, 88, 148],
312 7
           'Big Dip O’ruby'                            => [156, 37, 66],
313 7
           'Bisque'                                    => [255, 228, 196],
314 7
           'Bistre'                                    => [61, 43, 31],
315 7
           'Bistre Brown'                              => [150, 113, 23],
316 7
           'Bitter Lemon'                              => [202, 224, 13],
317 7
           'Bitter Lime'                               => [191, 255, 0],
318 7
           'Bittersweet'                               => [254, 111, 94],
319 7
           'Bittersweet Shimmer'                       => [191, 79, 81],
320 7
           'Black'                                     => [0, 0, 0],
321 7
           'Black Bean'                                => [61, 12, 2],
322 7
           'Black Leather Jacket'                      => [37, 53, 41],
323 7
           'Black Olive'                               => [59, 60, 54],
324 7
           'Blanched Almond'                           => [255, 235, 205],
325 7
           'Blast-Off Bronze'                          => [165, 113, 100],
326 7
           'Bleu De France'                            => [49, 140, 231],
327 7
           'Blizzard Blue'                             => [172, 229, 238],
328 7
           'Blond'                                     => [250, 240, 190],
329 7
           'Blue'                                      => [0, 0, 255],
330 7
           'Blue (Crayola)'                            => [31, 117, 254],
331 7
           'Blue (Munsell)'                            => [0, 147, 175],
332 7
           'Blue (NCS)'                                => [0, 135, 189],
333 7
           'Blue (Pantone)'                            => [0, 24, 168],
334 7
           'Blue (Pigment)'                            => [51, 51, 153],
335 7
           'Blue (RYB)'                                => [2, 71, 254],
336 7
           'Blue Bell'                                 => [162, 162, 208],
337 7
           'Blue-Gray'                                 => [102, 153, 204],
338 7
           'Blue-Green'                                => [13, 152, 186],
339 7
           'Blue Lagoon'                               => [172, 229, 238],
340 7
           'Blue-Magenta Violet'                       => [85, 53, 146],
341 7
           'Blue Sapphire'                             => [18, 97, 128],
342 7
           'Blue-Violet'                               => [138, 43, 226],
343 7
           'Blue Yonder'                               => [80, 114, 167],
344 7
           'Blueberry'                                 => [79, 134, 247],
345 7
           'Bluebonnet'                                => [28, 28, 240],
346 7
           'Blush'                                     => [222, 93, 131],
347 7
           'Bole'                                      => [121, 68, 59],
348 7
           'Bondi Blue'                                => [0, 149, 182],
349 7
           'Bone'                                      => [227, 218, 201],
350 7
           'Boston University Red'                     => [204, 0, 0],
351 7
           'Bottle Green'                              => [0, 106, 78],
352 7
           'Boysenberry'                               => [135, 50, 96],
353 7
           'Brandeis Blue'                             => [0, 112, 255],
354 7
           'Brass'                                     => [181, 166, 66],
355 7
           'Brick Red'                                 => [203, 65, 84],
356 7
           'Bright Cerulean'                           => [29, 172, 214],
357 7
           'Bright Green'                              => [102, 255, 0],
358 7
           'Bright Lavender'                           => [191, 148, 228],
359 7
           'Bright Lilac'                              => [216, 145, 239],
360 7
           'Bright Maroon'                             => [195, 33, 72],
361 7
           'Bright Navy Blue'                          => [25, 116, 210],
362 7
           'Bright Pink'                               => [255, 0, 127],
363 7
           'Bright Turquoise'                          => [8, 232, 222],
364 7
           'Bright Ube'                                => [209, 159, 232],
365 7
           'Brilliant Azure'                           => [51, 153, 255],
366 7
           'Brilliant Lavender'                        => [244, 187, 255],
367 7
           'Brilliant Rose'                            => [255, 85, 163],
368 7
           'Brink Pink'                                => [251, 96, 127],
369 7
           'British Racing Green'                      => [0, 66, 37],
370 7
           'Bronze'                                    => [205, 127, 50],
371 7
           'Bronze Yellow'                             => [115, 112, 0],
372 7
           'Brown (Traditional)'                       => [150, 75, 0],
373 7
           'Brown (Web)'                               => [165, 42, 42],
374 7
           'Brown-Nose'                                => [107, 68, 35],
375 7
           'Brown Yellow'                              => [204, 153, 102],
376 7
           'Brunswick Green'                           => [27, 77, 62],
377 7
           'Bubble Gum'                                => [255, 193, 204],
378 7
           'Bubbles'                                   => [231, 254, 255],
379 7
           'Buff'                                      => [240, 220, 130],
380 7
           'Bud Green'                                 => [123, 182, 97],
381 7
           'Bulgarian Rose'                            => [72, 6, 7],
382 7
           'Burgundy'                                  => [128, 0, 32],
383 7
           'Burlywood'                                 => [222, 184, 135],
384 7
           'Burnt Orange'                              => [204, 85, 0],
385 7
           'Burnt Sienna'                              => [233, 116, 81],
386 7
           'Burnt Umber'                               => [138, 51, 36],
387 7
           'Byzantine'                                 => [189, 51, 164],
388 7
           'Byzantium'                                 => [112, 41, 99],
389 7
           'Cadet'                                     => [83, 104, 114],
390 7
           'Cadet Blue'                                => [95, 158, 160],
391 7
           'Cadet Grey'                                => [145, 163, 176],
392 7
           'Cadmium Green'                             => [0, 107, 60],
393 7
           'Cadmium Orange'                            => [237, 135, 45],
394 7
           'Cadmium Red'                               => [227, 0, 34],
395 7
           'Cadmium Yellow'                            => [255, 246, 0],
396 7
           'Café Au Lait'                              => [166, 123, 91],
397 7
           'Café Noir'                                 => [75, 54, 33],
398 7
           'Cal Poly Green'                            => [30, 77, 43],
399 7
           'Cambridge Blue'                            => [163, 193, 173],
400 7
           'Camel'                                     => [193, 154, 107],
401 7
           'Cameo Pink'                                => [239, 187, 204],
402 7
           'Camouflage Green'                          => [120, 134, 107],
403 7
           'Canary Yellow'                             => [255, 239, 0],
404 7
           'Candy Apple Red'                           => [255, 8, 0],
405 7
           'Candy Pink'                                => [228, 113, 122],
406 7
           'Capri'                                     => [0, 191, 255],
407 7
           'Caput Mortuum'                             => [89, 39, 32],
408 7
           'Cardinal'                                  => [196, 30, 58],
409 7
           'Caribbean Green'                           => [0, 204, 153],
410 7
           'Carmine'                                   => [150, 0, 24],
411 7
           'Carmine (M&P)'                             => [215, 0, 64],
412 7
           'Carmine Pink'                              => [235, 76, 66],
413 7
           'Carmine Red'                               => [255, 0, 56],
414 7
           'Carnation Pink'                            => [255, 166, 201],
415 7
           'Carnelian'                                 => [179, 27, 27],
416 7
           'Carolina Blue'                             => [86, 160, 211],
417 7
           'Carrot Orange'                             => [237, 145, 33],
418 7
           'Castleton Green'                           => [0, 86, 63],
419 7
           'Catalina Blue'                             => [6, 42, 120],
420 7
           'Catawba'                                   => [112, 54, 66],
421 7
           'Cedar Chest'                               => [201, 90, 73],
422 7
           'Ceil'                                      => [146, 161, 207],
423 7
           'Celadon'                                   => [172, 225, 175],
424 7
           'Celadon Blue'                              => [0, 123, 167],
425 7
           'Celadon Green'                             => [47, 132, 124],
426 7
           'Celeste'                                   => [178, 255, 255],
427 7
           'Celestial Blue'                            => [73, 151, 208],
428 7
           'Cerise'                                    => [222, 49, 99],
429 7
           'Cerise Pink'                               => [236, 59, 131],
430 7
           'Cerulean'                                  => [0, 123, 167],
431 7
           'Cerulean Blue'                             => [42, 82, 190],
432 7
           'Cerulean Frost'                            => [109, 155, 195],
433 7
           'CG Blue'                                   => [0, 122, 165],
434 7
           'CG Red'                                    => [224, 60, 49],
435 7
           'Chamoisee'                                 => [160, 120, 90],
436 7
           'Champagne'                                 => [247, 231, 206],
437 7
           'Charcoal'                                  => [54, 69, 79],
438 7
           'Charleston Green'                          => [35, 43, 43],
439 7
           'Charm Pink'                                => [230, 143, 172],
440 7
           'Chartreuse (Traditional)'                  => [223, 255, 0],
441 7
           'Chartreuse (Web)'                          => [127, 255, 0],
442 7
           'Cherry'                                    => [222, 49, 99],
443 7
           'Cherry Blossom Pink'                       => [255, 183, 197],
444 7
           'Chestnut'                                  => [149, 69, 53],
445 7
           'China Pink'                                => [222, 111, 161],
446 7
           'China Rose'                                => [168, 81, 110],
447 7
           'Chinese Red'                               => [170, 56, 30],
448 7
           'Chinese Violet'                            => [133, 96, 136],
449 7
           'Chocolate (Traditional)'                   => [123, 63, 0],
450 7
           'Chocolate (Web)'                           => [210, 105, 30],
451 7
           'Chrome Yellow'                             => [255, 167, 0],
452 7
           'Cinereous'                                 => [152, 129, 123],
453 7
           'Cinnabar'                                  => [227, 66, 52],
454 7
           'Cinnamon[Citation Needed]'                 => [210, 105, 30],
455 7
           'Citrine'                                   => [228, 208, 10],
456 7
           'Citron'                                    => [159, 169, 31],
457 7
           'Claret'                                    => [127, 23, 52],
458 7
           'Classic Rose'                              => [251, 204, 231],
459 7
           'Cobalt Blue'                               => [0, 71, 171],
460 7
           'Cocoa Brown'                               => [210, 105, 30],
461 7
           'Coconut'                                   => [150, 90, 62],
462 7
           'Coffee'                                    => [111, 78, 55],
463 7
           'Columbia Blue'                             => [196, 216, 226],
464 7
           'Congo Pink'                                => [248, 131, 121],
465 7
           'Cool Black'                                => [0, 46, 99],
466 7
           'Cool Grey'                                 => [140, 146, 172],
467 7
           'Copper'                                    => [184, 115, 51],
468 7
           'Copper (Crayola)'                          => [218, 138, 103],
469 7
           'Copper Penny'                              => [173, 111, 105],
470 7
           'Copper Red'                                => [203, 109, 81],
471 7
           'Copper Rose'                               => [153, 102, 102],
472 7
           'Coquelicot'                                => [255, 56, 0],
473 7
           'Coral'                                     => [255, 127, 80],
474 7
           'Coral Pink'                                => [248, 131, 121],
475 7
           'Coral Red'                                 => [255, 64, 64],
476 7
           'Cordovan'                                  => [137, 63, 69],
477 7
           'Corn'                                      => [251, 236, 93],
478 7
           'Cornell Red'                               => [179, 27, 27],
479 7
           'Cornflower Blue'                           => [100, 149, 237],
480 7
           'Cornsilk'                                  => [255, 248, 220],
481 7
           'Cosmic Latte'                              => [255, 248, 231],
482 7
           'Coyote Brown'                              => [129, 97, 62],
483 7
           'Cotton Candy'                              => [255, 188, 217],
484 7
           'Cream'                                     => [255, 253, 208],
485 7
           'Crimson'                                   => [220, 20, 60],
486 7
           'Crimson Glory'                             => [190, 0, 50],
487 7
           'Crimson Red'                               => [153, 0, 0],
488 7
           'Cyan'                                      => [0, 255, 255],
489 7
           'Cyan Azure'                                => [78, 130, 180],
490 7
           'Cyan-Blue Azure'                           => [70, 130, 191],
491 7
           'Cyan Cobalt Blue'                          => [40, 88, 156],
492 7
           'Cyan Cornflower Blue'                      => [24, 139, 194],
493 7
           'Cyan (Process)'                            => [0, 183, 235],
494 7
           'Cyber Grape'                               => [88, 66, 124],
495 7
           'Cyber Yellow'                              => [255, 211, 0],
496 7
           'Daffodil'                                  => [255, 255, 49],
497 7
           'Dandelion'                                 => [240, 225, 48],
498 7
           'Dark Blue'                                 => [0, 0, 139],
499 7
           'Dark Blue-Gray'                            => [102, 102, 153],
500 7
           'Dark Brown'                                => [101, 67, 33],
501 7
           'Dark Brown-Tangelo'                        => [136, 101, 78],
502 7
           'Dark Byzantium'                            => [93, 57, 84],
503 7
           'Dark Candy Apple Red'                      => [164, 0, 0],
504 7
           'Dark Cerulean'                             => [8, 69, 126],
505 7
           'Dark Chestnut'                             => [152, 105, 96],
506 7
           'Dark Coral'                                => [205, 91, 69],
507 7
           'Dark Cyan'                                 => [0, 139, 139],
508 7
           'Dark Electric Blue'                        => [83, 104, 120],
509 7
           'Dark Goldenrod'                            => [184, 134, 11],
510 7
           'Dark Gray (X11)'                           => [169, 169, 169],
511 7
           'Dark Green'                                => [1, 50, 32],
512 7
           'Dark Green (X11)'                          => [0, 100, 0],
513 7
           'Dark Gunmetal'                             => [0, 100, 0],
514 7
           'Dark Imperial Blue'                        => [110, 110, 249],
515 7
           'Dark Jungle Green'                         => [26, 36, 33],
516 7
           'Dark Khaki'                                => [189, 183, 107],
517 7
           'Dark Lava'                                 => [72, 60, 50],
518 7
           'Dark Lavender'                             => [115, 79, 150],
519 7
           'Dark Liver'                                => [83, 75, 79],
520 7
           'Dark Liver (Horses)'                       => [84, 61, 55],
521 7
           'Dark Magenta'                              => [139, 0, 139],
522 7
           'Dark Medium Gray'                          => [169, 169, 169],
523 7
           'Dark Midnight Blue'                        => [0, 51, 102],
524 7
           'Dark Moss Green'                           => [74, 93, 35],
525 7
           'Dark Olive Green'                          => [85, 107, 47],
526 7
           'Dark Orange'                               => [255, 140, 0],
527 7
           'Dark Orchid'                               => [153, 50, 204],
528 7
           'Dark Pastel Blue'                          => [119, 158, 203],
529 7
           'Dark Pastel Green'                         => [3, 192, 60],
530 7
           'Dark Pastel Purple'                        => [150, 111, 214],
531 7
           'Dark Pastel Red'                           => [194, 59, 34],
532 7
           'Dark Pink'                                 => [231, 84, 128],
533 7
           'Dark Powder Blue'                          => [0, 51, 153],
534 7
           'Dark Puce'                                 => [79, 58, 60],
535 7
           'Dark Purple'                               => [48, 25, 52],
536 7
           'Dark Raspberry'                            => [135, 38, 87],
537 7
           'Dark Red'                                  => [139, 0, 0],
538 7
           'Dark Salmon'                               => [233, 150, 122],
539 7
           'Dark Scarlet'                              => [86, 3, 25],
540 7
           'Dark Sea Green'                            => [143, 188, 143],
541 7
           'Dark Sienna'                               => [60, 20, 20],
542 7
           'Dark Sky Blue'                             => [140, 190, 214],
543 7
           'Dark Slate Blue'                           => [72, 61, 139],
544 7
           'Dark Slate Gray'                           => [47, 79, 79],
545 7
           'Dark Spring Green'                         => [23, 114, 69],
546 7
           'Dark Tan'                                  => [145, 129, 81],
547 7
           'Dark Tangerine'                            => [255, 168, 18],
548 7
           'Dark Taupe'                                => [72, 60, 50],
549 7
           'Dark Terra Cotta'                          => [204, 78, 92],
550 7
           'Dark Turquoise'                            => [0, 206, 209],
551 7
           'Dark Vanilla'                              => [209, 190, 168],
552 7
           'Dark Violet'                               => [148, 0, 211],
553 7
           'Dark Yellow'                               => [155, 135, 12],
554 7
           'Dartmouth Green'                           => [0, 112, 60],
555 7
           'Davy\'s Grey'                              => [85, 85, 85],
556 7
           'Debian Red'                                => [215, 10, 83],
557 7
           'Deep Aquamarine'                           => [64, 130, 109],
558 7
           'Deep Carmine'                              => [169, 32, 62],
559 7
           'Deep Carmine Pink'                         => [239, 48, 56],
560 7
           'Deep Carrot Orange'                        => [233, 105, 44],
561 7
           'Deep Cerise'                               => [218, 50, 135],
562 7
           'Deep Champagne'                            => [250, 214, 165],
563 7
           'Deep Chestnut'                             => [185, 78, 72],
564 7
           'Deep Coffee'                               => [112, 66, 65],
565 7
           'Deep Fuchsia'                              => [193, 84, 193],
566 7
           'Deep Green'                                => [5, 102, 8],
567 7
           'Deep Green-Cyan Turquoise'                 => [14, 124, 97],
568 7
           'Deep Jungle Green'                         => [0, 75, 73],
569 7
           'Deep Koamaru'                              => [51, 51, 102],
570 7
           'Deep Lemon'                                => [245, 199, 26],
571 7
           'Deep Lilac'                                => [153, 85, 187],
572 7
           'Deep Magenta'                              => [204, 0, 204],
573 7
           'Deep Maroon'                               => [130, 0, 0],
574 7
           'Deep Mauve'                                => [212, 115, 212],
575 7
           'Deep Moss Green'                           => [53, 94, 59],
576 7
           'Deep Peach'                                => [255, 203, 164],
577 7
           'Deep Pink'                                 => [255, 20, 147],
578 7
           'Deep Puce'                                 => [169, 92, 104],
579 7
           'Deep Red'                                  => [133, 1, 1],
580 7
           'Deep Ruby'                                 => [132, 63, 91],
581 7
           'Deep Saffron'                              => [255, 153, 51],
582 7
           'Deep Sky Blue'                             => [0, 191, 255],
583 7
           'Deep Space Sparkle'                        => [74, 100, 108],
584 7
           'Deep Spring Bud'                           => [85, 107, 47],
585 7
           'Deep Taupe'                                => [126, 94, 96],
586 7
           'Deep Tuscan Red'                           => [102, 66, 77],
587 7
           'Deep Violet'                               => [51, 0, 102],
588 7
           'Deer'                                      => [186, 135, 89],
589 7
           'Denim'                                     => [21, 96, 189],
590 7
           'Desaturated Cyan'                          => [102, 153, 153],
591 7
           'Desert'                                    => [193, 154, 107],
592 7
           'Desert Sand'                               => [237, 201, 175],
593 7
           'Desire'                                    => [234, 60, 83],
594 7
           'Diamond'                                   => [185, 242, 255],
595 7
           'Dim Gray'                                  => [105, 105, 105],
596 7
           'Dirt'                                      => [155, 118, 83],
597 7
           'Dodger Blue'                               => [30, 144, 255],
598 7
           'Dogwood Rose'                              => [215, 24, 104],
599 7
           'Dollar Bill'                               => [133, 187, 101],
600 7
           'Donkey Brown'                              => [102, 76, 40],
601 7
           'Drab'                                      => [150, 113, 23],
602 7
           'Duke Blue'                                 => [0, 0, 156],
603 7
           'Dust Storm'                                => [229, 204, 201],
604 7
           'Dutch White'                               => [239, 223, 187],
605 7
           'Earth Yellow'                              => [225, 169, 95],
606 7
           'Ebony'                                     => [85, 93, 80],
607 7
           'Ecru'                                      => [194, 178, 128],
608 7
           'Eerie Black'                               => [27, 27, 27],
609 7
           'Eggplant'                                  => [97, 64, 81],
610 7
           'Eggshell'                                  => [240, 234, 214],
611 7
           'Egyptian Blue'                             => [16, 52, 166],
612 7
           'Electric Blue'                             => [125, 249, 255],
613 7
           'Electric Crimson'                          => [255, 0, 63],
614 7
           'Electric Cyan'                             => [0, 255, 255],
615 7
           'Electric Green'                            => [0, 255, 0],
616 7
           'Electric Indigo'                           => [111, 0, 255],
617 7
           'Electric Lavender'                         => [244, 187, 255],
618 7
           'Electric Lime'                             => [204, 255, 0],
619 7
           'Electric Purple'                           => [191, 0, 255],
620 7
           'Electric Ultramarine'                      => [63, 0, 255],
621 7
           'Electric Violet'                           => [143, 0, 255],
622 7
           'Electric Yellow'                           => [255, 255, 51],
623 7
           'Emerald'                                   => [80, 200, 120],
624 7
           'Eminence'                                  => [108, 48, 130],
625 7
           'English Green'                             => [27, 77, 62],
626 7
           'English Lavender'                          => [180, 131, 149],
627 7
           'English Red'                               => [171, 75, 82],
628 7
           'English Violet'                            => [86, 60, 92],
629 7
           'Eton Blue'                                 => [150, 200, 162],
630 7
           'Eucalyptus'                                => [68, 215, 168],
631 7
           'Fallow'                                    => [193, 154, 107],
632 7
           'Falu Red'                                  => [128, 24, 24],
633 7
           'Fandango'                                  => [181, 51, 137],
634 7
           'Fandango Pink'                             => [222, 82, 133],
635 7
           'Fashion Fuchsia'                           => [244, 0, 161],
636 7
           'Fawn'                                      => [229, 170, 112],
637 7
           'Feldgrau'                                  => [77, 93, 83],
638 7
           'Feldspar'                                  => [253, 213, 177],
639 7
           'Fern Green'                                => [79, 121, 66],
640 7
           'Ferrari Red'                               => [255, 40, 0],
641 7
           'Field Drab'                                => [108, 84, 30],
642 7
           'Firebrick'                                 => [178, 34, 34],
643 7
           'Fire Engine Red'                           => [206, 32, 41],
644 7
           'Flame'                                     => [226, 88, 34],
645 7
           'Flamingo Pink'                             => [252, 142, 172],
646 7
           'Flattery'                                  => [107, 68, 35],
647 7
           'Flavescent'                                => [247, 233, 142],
648 7
           'Flax'                                      => [238, 220, 130],
649 7
           'Flirt'                                     => [162, 0, 109],
650 7
           'Floral White'                              => [255, 250, 240],
651 7
           'Fluorescent Orange'                        => [255, 191, 0],
652 7
           'Fluorescent Pink'                          => [255, 20, 147],
653 7
           'Fluorescent Yellow'                        => [204, 255, 0],
654 7
           'Folly'                                     => [255, 0, 79],
655 7
           'Forest Green (Traditional)'                => [1, 68, 33],
656 7
           'Forest Green (Web)'                        => [34, 139, 34],
657 7
           'French Beige'                              => [166, 123, 91],
658 7
           'French Bistre'                             => [133, 109, 77],
659 7
           'French Blue'                               => [0, 114, 187],
660 7
           'French Fuchsia'                            => [253, 63, 146],
661 7
           'French Lilac'                              => [134, 96, 142],
662 7
           'French Lime'                               => [158, 253, 56],
663 7
           'French Mauve'                              => [212, 115, 212],
664 7
           'French Pink'                               => [253, 108, 158],
665 7
           'French Plum'                               => [129, 20, 83],
666 7
           'French Puce'                               => [78, 22, 9],
667 7
           'French Raspberry'                          => [199, 44, 72],
668 7
           'French Rose'                               => [246, 74, 138],
669 7
           'French Sky Blue'                           => [119, 181, 254],
670 7
           'French Violet'                             => [136, 6, 206],
671 7
           'French Wine'                               => [172, 30, 68],
672 7
           'Fresh Air'                                 => [166, 231, 255],
673 7
           'Fuchsia'                                   => [255, 0, 255],
674 7
           'Fuchsia (Crayola)'                         => [193, 84, 193],
675 7
           'Fuchsia Pink'                              => [255, 119, 255],
676 7
           'Fuchsia Purple'                            => [204, 57, 123],
677 7
           'Fuchsia Rose'                              => [199, 67, 117],
678 7
           'Fulvous'                                   => [228, 132, 0],
679 7
           'Fuzzy Wuzzy'                               => [204, 102, 102],
680 7
           'Gainsboro'                                 => [220, 220, 220],
681 7
           'Gamboge'                                   => [228, 155, 15],
682 7
           'Gamboge Orange (Brown)'                    => [153, 102, 0],
683 7
           'Generic Viridian'                          => [0, 127, 102],
684 7
           'Ghost White'                               => [248, 248, 255],
685 7
           'Giants Orange'                             => [254, 90, 29],
686 7
           'Ginger'                                    => [176, 101, 0],
687 7
           'Glaucous'                                  => [96, 130, 182],
688 7
           'Glitter'                                   => [230, 232, 250],
689 7
           'GO Green'                                  => [0, 171, 102],
690 7
           'Gold (Metallic)'                           => [212, 175, 55],
691 7
           'Gold (Web) (Golden)'                       => [255, 215, 0],
692 7
           'Gold Fusion'                               => [133, 117, 78],
693 7
           'Golden Brown'                              => [153, 101, 21],
694 7
           'Golden Poppy'                              => [252, 194, 0],
695 7
           'Golden Yellow'                             => [255, 223, 0],
696 7
           'Goldenrod'                                 => [218, 165, 32],
697 7
           'Granny Smith Apple'                        => [168, 228, 160],
698 7
           'Grape'                                     => [111, 45, 168],
699 7
           'Gray'                                      => [128, 128, 128],
700 7
           'Gray (HTML/CSS Gray)'                      => [128, 128, 128],
701 7
           'Gray (X11 Gray)'                           => [190, 190, 190],
702 7
           'Gray-Asparagus'                            => [70, 89, 69],
703 7
           'Gray-Blue'                                 => [140, 146, 172],
704 7
           'Green (Color Wheel) (X11 Green)'           => [0, 255, 0],
705 7
           'Green (Crayola)'                           => [28, 172, 120],
706 7
           'Green (HTML/CSS Color)'                    => [0, 128, 0],
707 7
           'Green (Munsell)'                           => [0, 168, 119],
708 7
           'Green (NCS)'                               => [0, 159, 107],
709 7
           'Green (Pantone)'                           => [0, 173, 67],
710 7
           'Green (Pigment)'                           => [0, 165, 80],
711 7
           'Green (RYB)'                               => [102, 176, 50],
712 7
           'Green-Blue'                                => [17, 100, 180],
713 7
           'Green-Cyan'                                => [0, 153, 102],
714 7
           'Green-Yellow'                              => [173, 255, 47],
715 7
           'Grizzly'                                   => [136, 88, 24],
716 7
           'Grullo'                                    => [169, 154, 134],
717 7
           'Guppie Green'                              => [0, 255, 127],
718 7
           'Gunmetal'                                  => [42, 52, 57],
719 7
           'Halayà Úbe'                                => [102, 56, 84],
720 7
           'Han Blue'                                  => [68, 108, 207],
721 7
           'Han Purple'                                => [82, 24, 250],
722 7
           'Hansa Yellow'                              => [233, 214, 107],
723 7
           'Harlequin'                                 => [63, 255, 0],
724 7
           'Harlequin Green'                           => [70, 203, 24],
725 7
           'Harvard Crimson'                           => [201, 0, 22],
726 7
           'Harvest Gold'                              => [218, 145, 0],
727 7
           'Heart Gold'                                => [128, 128, 0],
728 7
           'Heliotrope'                                => [223, 115, 255],
729 7
           'Heliotrope Gray'                           => [170, 152, 169],
730 7
           'Heliotrope Magenta'                        => [170, 0, 187],
731 7
           'Hollywood Cerise'                          => [244, 0, 161],
732 7
           'Honeydew'                                  => [240, 255, 240],
733 7
           'Honolulu Blue'                             => [0, 109, 176],
734 7
           'Hooker\'s Green'                           => [73, 121, 107],
735 7
           'Hot Magenta'                               => [255, 29, 206],
736 7
           'Hot Pink'                                  => [255, 105, 180],
737 7
           'Hunter Green'                              => [53, 94, 59],
738 7
           'Iceberg'                                   => [113, 166, 210],
739 7
           'Icterine'                                  => [252, 247, 94],
740 7
           'Illuminating Emerald'                      => [49, 145, 119],
741 7
           'Imperial'                                  => [96, 47, 107],
742 7
           'Imperial Blue'                             => [0, 35, 149],
743 7
           'Imperial Purple'                           => [102, 2, 60],
744 7
           'Imperial Red'                              => [237, 41, 57],
745 7
           'Inchworm'                                  => [178, 236, 93],
746 7
           'Independence'                              => [76, 81, 109],
747 7
           'India Green'                               => [19, 136, 8],
748 7
           'Indian Red'                                => [205, 92, 92],
749 7
           'Indian Yellow'                             => [227, 168, 87],
750 7
           'Indigo'                                    => [75, 0, 130],
751 7
           'Indigo Dye'                                => [9, 31, 146],
752 7
           'Indigo (Web)'                              => [75, 0, 130],
753 7
           'International Klein Blue'                  => [0, 47, 167],
754 7
           'International Orange (Aerospace)'          => [255, 79, 0],
755 7
           'International Orange (Engineering)'        => [186, 22, 12],
756 7
           'International Orange (Golden Gate Bridge)' => [192, 54, 44],
757 7
           'Iris'                                      => [90, 79, 207],
758 7
           'Irresistible'                              => [179, 68, 108],
759 7
           'Isabelline'                                => [244, 240, 236],
760 7
           'Islamic Green'                             => [0, 144, 0],
761 7
           'Italian Sky Blue'                          => [178, 255, 255],
762 7
           'Ivory'                                     => [255, 255, 240],
763 7
           'Jade'                                      => [0, 168, 107],
764 7
           'Japanese Carmine'                          => [157, 41, 51],
765 7
           'Japanese Indigo'                           => [38, 67, 72],
766 7
           'Japanese Violet'                           => [91, 50, 86],
767 7
           'Jasmine'                                   => [248, 222, 126],
768 7
           'Jasper'                                    => [215, 59, 62],
769 7
           'Jazzberry Jam'                             => [165, 11, 94],
770 7
           'Jelly Bean'                                => [218, 97, 78],
771 7
           'Jet'                                       => [52, 52, 52],
772 7
           'Jonquil'                                   => [244, 202, 22],
773 7
           'Jordy Blue'                                => [138, 185, 241],
774 7
           'June Bud'                                  => [189, 218, 87],
775 7
           'Jungle Green'                              => [41, 171, 135],
776 7
           'Kelly Green'                               => [76, 187, 23],
777 7
           'Kenyan Copper'                             => [124, 28, 5],
778 7
           'Keppel'                                    => [58, 176, 158],
779 7
           'Khaki (HTML/CSS) (Khaki)'                  => [195, 176, 145],
780 7
           'Khaki (X11) (Light Khaki)'                 => [240, 230, 140],
781 7
           'Kobe'                                      => [136, 45, 23],
782 7
           'Kobi'                                      => [231, 159, 196],
783 7
           'Kobicha'                                   => [107, 68, 35],
784 7
           'Kombu Green'                               => [53, 66, 48],
785 7
           'KU Crimson'                                => [232, 0, 13],
786 7
           'La Salle Green'                            => [8, 120, 48],
787 7
           'Languid Lavender'                          => [214, 202, 221],
788 7
           'Lapis Lazuli'                              => [38, 97, 156],
789 7
           'Laser Lemon'                               => [255, 255, 102],
790 7
           'Laurel Green'                              => [169, 186, 157],
791 7
           'Lava'                                      => [207, 16, 32],
792 7
           'Lavender (Floral)'                         => [181, 126, 220],
793 7
           'Lavender (Web)'                            => [230, 230, 250],
794 7
           'Lavender Blue'                             => [204, 204, 255],
795 7
           'Lavender Blush'                            => [255, 240, 245],
796 7
           'Lavender Gray'                             => [196, 195, 208],
797 7
           'Lavender Indigo'                           => [148, 87, 235],
798 7
           'Lavender Magenta'                          => [238, 130, 238],
799 7
           'Lavender Mist'                             => [230, 230, 250],
800 7
           'Lavender Pink'                             => [251, 174, 210],
801 7
           'Lavender Purple'                           => [150, 123, 182],
802 7
           'Lavender Rose'                             => [251, 160, 227],
803 7
           'Lawn Green'                                => [124, 252, 0],
804 7
           'Lemon'                                     => [255, 247, 0],
805 7
           'Lemon Chiffon'                             => [255, 250, 205],
806 7
           'Lemon Curry'                               => [204, 160, 29],
807 7
           'Lemon Glacier'                             => [253, 255, 0],
808 7
           'Lemon Lime'                                => [227, 255, 0],
809 7
           'Lemon Meringue'                            => [246, 234, 190],
810 7
           'Lemon Yellow'                              => [255, 244, 79],
811 7
           'Lenurple'                                  => [186, 147, 216],
812 7
           'Licorice'                                  => [26, 17, 16],
813 7
           'Liberty'                                   => [84, 90, 167],
814 7
           'Light Apricot'                             => [253, 213, 177],
815 7
           'Light Blue'                                => [173, 216, 230],
816 7
           'Light Brilliant Red'                       => [254, 46, 46],
817 7
           'Light Brown'                               => [181, 101, 29],
818 7
           'Light Carmine Pink'                        => [230, 103, 113],
819 7
           'Light Cobalt Blue'                         => [136, 172, 224],
820 7
           'Light Coral'                               => [240, 128, 128],
821 7
           'Light Cornflower Blue'                     => [147, 204, 234],
822 7
           'Light Crimson'                             => [245, 105, 145],
823 7
           'Light Cyan'                                => [224, 255, 255],
824 7
           'Light Deep Pink'                           => [255, 92, 205],
825 7
           'Light French Beige'                        => [200, 173, 127],
826 7
           'Light Fuchsia Pink'                        => [249, 132, 239],
827 7
           'Light Goldenrod Yellow'                    => [250, 250, 210],
828 7
           'Light Gray'                                => [211, 211, 211],
829 7
           'Light Grayish Magenta'                     => [204, 153, 204],
830 7
           'Light Green'                               => [144, 238, 144],
831 7
           'Light Hot Pink'                            => [255, 179, 222],
832 7
           'Light Khaki'                               => [240, 230, 140],
833 7
           'Light Medium Orchid'                       => [211, 155, 203],
834 7
           'Light Moss Green'                          => [173, 223, 173],
835 7
           'Light Orchid'                              => [230, 168, 215],
836 7
           'Light Pastel Purple'                       => [177, 156, 217],
837 7
           'Light Pink'                                => [255, 182, 193],
838 7
           'Light Red Ochre'                           => [233, 116, 81],
839 7
           'Light Salmon'                              => [255, 160, 122],
840 7
           'Light Salmon Pink'                         => [255, 153, 153],
841 7
           'Light Sea Green'                           => [32, 178, 170],
842 7
           'Light Sky Blue'                            => [135, 206, 250],
843 7
           'Light Slate Gray'                          => [119, 136, 153],
844 7
           'Light Steel Blue'                          => [176, 196, 222],
845 7
           'Light Taupe'                               => [179, 139, 109],
846 7
           'Light Thulian Pink'                        => [230, 143, 172],
847 7
           'Light Yellow'                              => [255, 255, 224],
848 7
           'Lilac'                                     => [200, 162, 200],
849 7
           'Lime (Color Wheel)'                        => [191, 255, 0],
850 7
           'Lime (Web) (X11 Green)'                    => [0, 255, 0],
851 7
           'Lime Green'                                => [50, 205, 50],
852 7
           'Limerick'                                  => [157, 194, 9],
853 7
           'Lincoln Green'                             => [25, 89, 5],
854 7
           'Linen'                                     => [250, 240, 230],
855 7
           'Lion'                                      => [193, 154, 107],
856 7
           'Liseran Purple'                            => [222, 111, 161],
857 7
           'Little Boy Blue'                           => [108, 160, 220],
858 7
           'Liver'                                     => [103, 76, 71],
859 7
           'Liver (Dogs)'                              => [184, 109, 41],
860 7
           'Liver (Organ)'                             => [108, 46, 31],
861 7
           'Liver Chestnut'                            => [152, 116, 86],
862 7
           'Livid'                                     => [102, 153, 204],
863 7
           'Lumber'                                    => [255, 228, 205],
864 7
           'Lust'                                      => [230, 32, 32],
865 7
           'Macaroni And Cheese'                       => [255, 189, 136],
866 7
           'Magenta'                                   => [255, 0, 255],
867 7
           'Magenta (Crayola)'                         => [255, 85, 163],
868 7
           'Magenta (Dye)'                             => [202, 31, 123],
869 7
           'Magenta (Pantone)'                         => [208, 65, 126],
870 7
           'Magenta (Process)'                         => [255, 0, 144],
871 7
           'Magenta Haze'                              => [159, 69, 118],
872 7
           'Magenta-Pink'                              => [204, 51, 139],
873 7
           'Magic Mint'                                => [170, 240, 209],
874 7
           'Magnolia'                                  => [248, 244, 255],
875 7
           'Mahogany'                                  => [192, 64, 0],
876 7
           'Maize'                                     => [251, 236, 93],
877 7
           'Majorelle Blue'                            => [96, 80, 220],
878 7
           'Malachite'                                 => [11, 218, 81],
879 7
           'Manatee'                                   => [151, 154, 170],
880 7
           'Mango Tango'                               => [255, 130, 67],
881 7
           'Mantis'                                    => [116, 195, 101],
882 7
           'Mardi Gras'                                => [136, 0, 133],
883 7
           'Marigold'                                  => [234, 162, 33],
884 7
           'Maroon (Crayola)'                          => [195, 33, 72],
885 7
           'Maroon (HTML/CSS)'                         => [128, 0, 0],
886 7
           'Maroon (X11)'                              => [176, 48, 96],
887 7
           'Mauve'                                     => [224, 176, 255],
888 7
           'Mauve Taupe'                               => [145, 95, 109],
889 7
           'Mauvelous'                                 => [239, 152, 170],
890 7
           'May Green'                                 => [76, 145, 65],
891 7
           'Maya Blue'                                 => [115, 194, 251],
892 7
           'Meat Brown'                                => [229, 183, 59],
893 7
           'Medium Aquamarine'                         => [102, 221, 170],
894 7
           'Medium Blue'                               => [0, 0, 205],
895 7
           'Medium Candy Apple Red'                    => [226, 6, 44],
896 7
           'Medium Carmine'                            => [175, 64, 53],
897 7
           'Medium Champagne'                          => [243, 229, 171],
898 7
           'Medium Electric Blue'                      => [3, 80, 150],
899 7
           'Medium Jungle Green'                       => [28, 53, 45],
900 7
           'Medium Lavender Magenta'                   => [221, 160, 221],
901 7
           'Medium Orchid'                             => [186, 85, 211],
902 7
           'Medium Persian Blue'                       => [0, 103, 165],
903 7
           'Medium Purple'                             => [147, 112, 219],
904 7
           'Medium Red-Violet'                         => [187, 51, 133],
905 7
           'Medium Ruby'                               => [170, 64, 105],
906 7
           'Medium Sea Green'                          => [60, 179, 113],
907 7
           'Medium Sky Blue'                           => [128, 218, 235],
908 7
           'Medium Slate Blue'                         => [123, 104, 238],
909 7
           'Medium Spring Bud'                         => [201, 220, 135],
910 7
           'Medium Spring Green'                       => [0, 250, 154],
911 7
           'Medium Taupe'                              => [103, 76, 71],
912 7
           'Medium Turquoise'                          => [72, 209, 204],
913 7
           'Medium Tuscan Red'                         => [121, 68, 59],
914 7
           'Medium Vermilion'                          => [217, 96, 59],
915 7
           'Medium Violet-Red'                         => [199, 21, 133],
916 7
           'Mellow Apricot'                            => [248, 184, 120],
917 7
           'Mellow Yellow'                             => [248, 222, 126],
918 7
           'Melon'                                     => [253, 188, 180],
919 7
           'Metallic Seaweed'                          => [10, 126, 140],
920 7
           'Metallic Sunburst'                         => [156, 124, 56],
921 7
           'Mexican Pink'                              => [228, 0, 124],
922 7
           'Midnight Blue'                             => [25, 25, 112],
923 7
           'Midnight Green (Eagle Green)'              => [0, 73, 83],
924 7
           'Mikado Yellow'                             => [255, 196, 12],
925 7
           'Mindaro'                                   => [227, 249, 136],
926 7
           'Ming'                                      => [54, 116, 125],
927 7
           'Mint'                                      => [62, 180, 137],
928 7
           'Mint Cream'                                => [245, 255, 250],
929 7
           'Mint Green'                                => [152, 255, 152],
930 7
           'Misty Rose'                                => [255, 228, 225],
931 7
           'Moccasin'                                  => [250, 235, 215],
932 7
           'Mode Beige'                                => [150, 113, 23],
933 7
           'Moonstone Blue'                            => [115, 169, 194],
934 7
           'Mordant Red 19'                            => [174, 12, 0],
935 7
           'Moss Green'                                => [138, 154, 91],
936 7
           'Mountain Meadow'                           => [48, 186, 143],
937 7
           'Mountbatten Pink'                          => [153, 122, 141],
938 7
           'MSU Green'                                 => [24, 69, 59],
939 7
           'Mughal Green'                              => [48, 96, 48],
940 7
           'Mulberry'                                  => [197, 75, 140],
941 7
           'Mustard'                                   => [255, 219, 88],
942 7
           'Myrtle Green'                              => [49, 120, 115],
943 7
           'Nadeshiko Pink'                            => [246, 173, 198],
944 7
           'Napier Green'                              => [42, 128, 0],
945 7
           'Naples Yellow'                             => [250, 218, 94],
946 7
           'Navajo White'                              => [255, 222, 173],
947 7
           'Navy'                                      => [0, 0, 128],
948 7
           'Navy Purple'                               => [148, 87, 235],
949 7
           'Neon Carrot'                               => [255, 163, 67],
950 7
           'Neon Fuchsia'                              => [254, 65, 100],
951 7
           'Neon Green'                                => [57, 255, 20],
952 7
           'New Car'                                   => [33, 79, 198],
953 7
           'New York Pink'                             => [215, 131, 127],
954 7
           'Non-Photo Blue'                            => [164, 221, 237],
955 7
           'North Texas Green'                         => [5, 144, 51],
956 7
           'Nyanza'                                    => [233, 255, 219],
957 7
           'Ocean Boat Blue'                           => [0, 119, 190],
958 7
           'Ochre'                                     => [204, 119, 34],
959 7
           'Office Green'                              => [0, 128, 0],
960 7
           'Old Burgundy'                              => [67, 48, 46],
961 7
           'Old Gold'                                  => [207, 181, 59],
962 7
           'Old Heliotrope'                            => [86, 60, 92],
963 7
           'Old Lace'                                  => [253, 245, 230],
964 7
           'Old Lavender'                              => [121, 104, 120],
965 7
           'Old Mauve'                                 => [103, 49, 71],
966 7
           'Old Moss Green'                            => [134, 126, 54],
967 7
           'Old Rose'                                  => [192, 128, 129],
968 7
           'Old Silver'                                => [132, 132, 130],
969 7
           'Olive'                                     => [128, 128, 0],
970 7
           'Olive Drab ('                              => [107, 142, 35],
971 7
           'Olive Drab'                                => [60, 52, 31],
972 7
           'Olivine'                                   => [154, 185, 115],
973 7
           'Onyx'                                      => [53, 56, 57],
974 7
           'Opera Mauve'                               => [183, 132, 167],
975 7
           'Orange (Color Wheel)'                      => [255, 127, 0],
976 7
           'Orange (Crayola)'                          => [255, 117, 56],
977 7
           'Orange (Pantone)'                          => [255, 88, 0],
978 7
           'Orange (RYB)'                              => [251, 153, 2],
979 7
           'Orange (Web)'                              => [255, 165, 0],
980 7
           'Orange Peel'                               => [255, 159, 0],
981 7
           'Orange-Red'                                => [255, 69, 0],
982 7
           'Orange-Yellow'                             => [248, 213, 104],
983 7
           'Orchid'                                    => [218, 112, 214],
984 7
           'Orchid Pink'                               => [242, 189, 205],
985 7
           'Orioles Orange'                            => [251, 79, 20],
986 7
           'Otter Brown'                               => [101, 67, 33],
987 7
           'Outer Space'                               => [65, 74, 76],
988 7
           'Outrageous Orange'                         => [255, 110, 74],
989 7
           'Oxford Blue'                               => [0, 33, 71],
990 7
           'OU Crimson Red'                            => [153, 0, 0],
991 7
           'Pacific Blue'                              => [28, 169, 201],
992 7
           'Pakistan Green'                            => [0, 102, 0],
993 7
           'Palatinate Blue'                           => [39, 59, 226],
994 7
           'Palatinate Purple'                         => [104, 40, 96],
995 7
           'Pale Aqua'                                 => [188, 212, 230],
996 7
           'Pale Blue'                                 => [175, 238, 238],
997 7
           'Pale Brown'                                => [152, 118, 84],
998 7
           'Pale Carmine'                              => [175, 64, 53],
999 7
           'Pale Cerulean'                             => [155, 196, 226],
1000 7
           'Pale Chestnut'                             => [221, 173, 175],
1001 7
           'Pale Copper'                               => [218, 138, 103],
1002 7
           'Pale Cornflower Blue'                      => [171, 205, 239],
1003 7
           'Pale Cyan'                                 => [135, 211, 248],
1004 7
           'Pale Gold'                                 => [230, 190, 138],
1005 7
           'Pale Goldenrod'                            => [238, 232, 170],
1006 7
           'Pale Green'                                => [152, 251, 152],
1007 7
           'Pale Lavender'                             => [220, 208, 255],
1008 7
           'Pale Magenta'                              => [249, 132, 229],
1009 7
           'Pale Magenta-Pink'                         => [255, 153, 204],
1010 7
           'Pale Pink'                                 => [250, 218, 221],
1011 7
           'Pale Plum'                                 => [221, 160, 221],
1012 7
           'Pale Red-Violet'                           => [219, 112, 147],
1013 7
           'Pale Robin Egg Blue'                       => [150, 222, 209],
1014 7
           'Pale Silver'                               => [201, 192, 187],
1015 7
           'Pale Spring Bud'                           => [236, 235, 189],
1016 7
           'Pale Taupe'                                => [188, 152, 126],
1017 7
           'Pale Turquoise'                            => [175, 238, 238],
1018 7
           'Pale Violet'                               => [204, 153, 255],
1019 7
           'Pale Violet-Red'                           => [219, 112, 147],
1020 7
           'Pansy Purple'                              => [120, 24, 74],
1021 7
           'Paolo Veronese Green'                      => [0, 155, 125],
1022 7
           'Papaya Whip'                               => [255, 239, 213],
1023 7
           'Paradise Pink'                             => [230, 62, 98],
1024 7
           'Paris Green'                               => [80, 200, 120],
1025 7
           'Pastel Blue'                               => [174, 198, 207],
1026 7
           'Pastel Brown'                              => [131, 105, 83],
1027 7
           'Pastel Gray'                               => [207, 207, 196],
1028 7
           'Pastel Green'                              => [119, 221, 119],
1029 7
           'Pastel Magenta'                            => [244, 154, 194],
1030 7
           'Pastel Orange'                             => [255, 179, 71],
1031 7
           'Pastel Pink'                               => [222, 165, 164],
1032 7
           'Pastel Purple'                             => [179, 158, 181],
1033 7
           'Pastel Red'                                => [255, 105, 97],
1034 7
           'Pastel Violet'                             => [203, 153, 201],
1035 7
           'Pastel Yellow'                             => [253, 253, 150],
1036 7
           'Patriarch'                                 => [128, 0, 128],
1037 7
           'Payne\'s Grey'                             => [83, 104, 120],
1038 7
           'Peach'                                     => [255, 203, 164],
1039 7
           'Peach-Orange'                              => [255, 204, 153],
1040 7
           'Peach Puff'                                => [255, 218, 185],
1041 7
           'Peach-Yellow'                              => [250, 223, 173],
1042 7
           'Pear'                                      => [209, 226, 49],
1043 7
           'Pearl'                                     => [234, 224, 200],
1044 7
           'Pearl Aqua'                                => [136, 216, 192],
1045 7
           'Pearly Purple'                             => [183, 104, 162],
1046 7
           'Peridot'                                   => [230, 226, 0],
1047 7
           'Periwinkle'                                => [204, 204, 255],
1048 7
           'Permanent Geranium Lake'                   => [225, 44, 44],
1049 7
           'Persian Blue'                              => [28, 57, 187],
1050 7
           'Persian Green'                             => [0, 166, 147],
1051 7
           'Persian Indigo'                            => [50, 18, 122],
1052 7
           'Persian Orange'                            => [217, 144, 88],
1053 7
           'Persian Pink'                              => [247, 127, 190],
1054 7
           'Persian Plum'                              => [112, 28, 28],
1055 7
           'Persian Red'                               => [204, 51, 51],
1056 7
           'Persian Rose'                              => [254, 40, 162],
1057 7
           'Persimmon'                                 => [236, 88, 0],
1058 7
           'Peru'                                      => [205, 133, 63],
1059 7
           'Phlox'                                     => [223, 0, 255],
1060 7
           'Phthalo Blue'                              => [0, 15, 137],
1061 7
           'Phthalo Green'                             => [18, 53, 36],
1062 7
           'Picton Blue'                               => [69, 177, 232],
1063 7
           'Pictorial Carmine'                         => [195, 11, 78],
1064 7
           'Piggy Pink'                                => [253, 221, 230],
1065 7
           'Pine Green'                                => [1, 121, 111],
1066 7
           'Pineapple'                                 => [86, 60, 92],
1067 7
           'Pink'                                      => [255, 192, 203],
1068 7
           'Pink (Pantone)'                            => [215, 72, 148],
1069 7
           'Pink Flamingo'                             => [252, 116, 253],
1070 7
           'Pink Lace'                                 => [255, 221, 244],
1071 7
           'Pink Lavender'                             => [216, 178, 209],
1072 7
           'Pink-Orange'                               => [255, 153, 102],
1073 7
           'Pink Pearl'                                => [231, 172, 207],
1074 7
           'Pink Raspberry'                            => [152, 0, 54],
1075 7
           'Pink Sherbet'                              => [247, 143, 167],
1076 7
           'Pistachio'                                 => [147, 197, 114],
1077 7
           'Platinum'                                  => [229, 228, 226],
1078 7
           'Plum'                                      => [142, 69, 133],
1079 7
           'Plum (Web)'                                => [221, 160, 221],
1080 7
           'Pomp And Power'                            => [134, 96, 142],
1081 7
           'Popstar'                                   => [190, 79, 98],
1082 7
           'Portland Orange'                           => [255, 90, 54],
1083 7
           'Powder Blue'                               => [176, 224, 230],
1084 7
           'Princeton Orange'                          => [245, 128, 37],
1085 7
           'Prune'                                     => [112, 28, 28],
1086 7
           'Prussian Blue'                             => [0, 49, 83],
1087 7
           'Psychedelic Purple'                        => [223, 0, 255],
1088 7
           'Puce'                                      => [204, 136, 153],
1089 7
           'Puce Red'                                  => [114, 47, 55],
1090 7
           'Pullman Brown (UPS Brown)'                 => [100, 65, 23],
1091 7
           'Pullman Green'                             => [59, 51, 28],
1092 7
           'Pumpkin'                                   => [255, 117, 24],
1093 7
           'Purple (HTML)'                             => [128, 0, 128],
1094 7
           'Purple (Munsell)'                          => [159, 0, 197],
1095 7
           'Purple (X11)'                              => [160, 32, 240],
1096 7
           'Purple Heart'                              => [105, 53, 156],
1097 7
           'Purple Mountain Majesty'                   => [150, 120, 182],
1098 7
           'Purple Navy'                               => [78, 81, 128],
1099 7
           'Purple Pizzazz'                            => [254, 78, 218],
1100 7
           'Purple Taupe'                              => [80, 64, 77],
1101 7
           'Purpureus'                                 => [154, 78, 174],
1102 7
           'Quartz'                                    => [81, 72, 79],
1103 7
           'Queen Blue'                                => [67, 107, 149],
1104 7
           'Queen Pink'                                => [232, 204, 215],
1105 7
           'Quinacridone Magenta'                      => [142, 58, 89],
1106 7
           'Rackley'                                   => [93, 138, 168],
1107 7
           'Radical Red'                               => [255, 53, 94],
1108 7
           'Raisin Black'                              => [36, 33, 36],
1109 7
           'Rajah'                                     => [251, 171, 96],
1110 7
           'Raspberry'                                 => [227, 11, 93],
1111 7
           'Raspberry Glace'                           => [145, 95, 109],
1112 7
           'Raspberry Pink'                            => [226, 80, 152],
1113 7
           'Raspberry Rose'                            => [179, 68, 108],
1114 7
           'Raw Sienna'                                => [214, 138, 89],
1115 7
           'Raw Umber'                                 => [130, 102, 68],
1116 7
           'Razzle Dazzle Rose'                        => [255, 51, 204],
1117 7
           'Razzmatazz'                                => [227, 37, 107],
1118 7
           'Razzmic Berry'                             => [141, 78, 133],
1119 7
           'Rebecca Purple'                            => [102, 51, 153],
1120 7
           'Red'                                       => [255, 0, 0],
1121 7
           'Red (Crayola)'                             => [238, 32, 77],
1122 7
           'Red (Munsell)'                             => [242, 0, 60],
1123 7
           'Red (NCS)'                                 => [196, 2, 51],
1124 7
           'Red (Pantone)'                             => [237, 41, 57],
1125 7
           'Red (Pigment)'                             => [237, 28, 36],
1126 7
           'Red (RYB)'                                 => [254, 39, 18],
1127 7
           'Red-Brown'                                 => [165, 42, 42],
1128 7
           'Red Devil'                                 => [134, 1, 17],
1129 7
           'Red-Orange'                                => [255, 83, 73],
1130 7
           'Red-Purple'                                => [228, 0, 120],
1131 7
           'Red-Violet'                                => [199, 21, 133],
1132 7
           'Redwood'                                   => [164, 90, 82],
1133 7
           'Regalia'                                   => [82, 45, 128],
1134 7
           'Registration Black'                        => [0, 0, 0],
1135 7
           'Resolution Blue'                           => [0, 35, 135],
1136 7
           'Rhythm'                                    => [119, 118, 150],
1137 7
           'Rich Black'                                => [0, 64, 64],
1138 7
           'Rich Black (FOGRA29)'                      => [1, 11, 19],
1139 7
           'Rich Black (FOGRA39)'                      => [1, 2, 3],
1140 7
           'Rich Brilliant Lavender'                   => [241, 167, 254],
1141 7
           'Rich Carmine'                              => [215, 0, 64],
1142 7
           'Rich Electric Blue'                        => [8, 146, 208],
1143 7
           'Rich Lavender'                             => [167, 107, 207],
1144 7
           'Rich Lilac'                                => [182, 102, 210],
1145 7
           'Rich Maroon'                               => [176, 48, 96],
1146 7
           'Rifle Green'                               => [68, 76, 56],
1147 7
           'Roast Coffee'                              => [112, 66, 65],
1148 7
           'Robin Egg Blue'                            => [0, 204, 204],
1149 7
           'Rocket Metallic'                           => [138, 127, 128],
1150 7
           'Roman Silver'                              => [131, 137, 150],
1151 7
           'Rose'                                      => [255, 0, 127],
1152 7
           'Rose Bonbon'                               => [249, 66, 158],
1153 7
           'Rose Ebony'                                => [103, 72, 70],
1154 7
           'Rose Gold'                                 => [183, 110, 121],
1155 7
           'Rose Madder'                               => [227, 38, 54],
1156 7
           'Rose Pink'                                 => [255, 102, 204],
1157 7
           'Rose Quartz'                               => [170, 152, 169],
1158 7
           'Rose Red'                                  => [194, 30, 86],
1159 7
           'Rose Taupe'                                => [144, 93, 93],
1160 7
           'Rose Vale'                                 => [171, 78, 82],
1161 7
           'Rosewood'                                  => [101, 0, 11],
1162 7
           'Rosso Corsa'                               => [212, 0, 0],
1163 7
           'Rosy Brown'                                => [188, 143, 143],
1164 7
           'Royal Azure'                               => [0, 56, 168],
1165 7
           'Royal Blue'                                => [65, 105, 225],
1166 7
           'Royal Fuchsia'                             => [202, 44, 146],
1167 7
           'Royal Purple'                              => [120, 81, 169],
1168 7
           'Royal Yellow'                              => [250, 218, 94],
1169 7
           'Ruber'                                     => [206, 70, 118],
1170 7
           'Rubine Red'                                => [209, 0, 86],
1171 7
           'Ruby'                                      => [224, 17, 95],
1172 7
           'Ruby Red'                                  => [155, 17, 30],
1173 7
           'Ruddy'                                     => [255, 0, 40],
1174 7
           'Ruddy Brown'                               => [187, 101, 40],
1175 7
           'Ruddy Pink'                                => [225, 142, 150],
1176 7
           'Rufous'                                    => [168, 28, 7],
1177 7
           'Russet'                                    => [128, 70, 27],
1178 7
           'Russian Green'                             => [103, 146, 103],
1179 7
           'Russian Violet'                            => [50, 23, 77],
1180 7
           'Rust'                                      => [183, 65, 14],
1181 7
           'Rusty Red'                                 => [218, 44, 67],
1182 7
           'Sacramento State Green'                    => [0, 86, 63],
1183 7
           'Saddle Brown'                              => [139, 69, 19],
1184 7
           'Safety Orange'                             => [255, 120, 0],
1185 7
           'Safety Orange (Blaze Orange)'              => [255, 103, 0],
1186 7
           'Safety Yellow'                             => [238, 210, 2],
1187 7
           'Saffron'                                   => [244, 196, 48],
1188 7
           'Sage'                                      => [188, 184, 138],
1189 7
           'St. Patrick\'s Blue'                        => [35, 41, 122],
1190 7
           'Salmon'                                    => [250, 128, 114],
1191 7
           'Salmon Pink'                               => [255, 145, 164],
1192 7
           'Sand'                                      => [194, 178, 128],
1193 7
           'Sand Dune'                                 => [150, 113, 23],
1194 7
           'Sandstorm'                                 => [236, 213, 64],
1195 7
           'Sandy Brown'                               => [244, 164, 96],
1196 7
           'Sandy Taupe'                               => [150, 113, 23],
1197 7
           'Sangria'                                   => [146, 0, 10],
1198 7
           'Sap Green'                                 => [80, 125, 42],
1199 7
           'Sapphire'                                  => [15, 82, 186],
1200 7
           'Sapphire Blue'                             => [0, 103, 165],
1201 7
           'Satin Sheen Gold'                          => [203, 161, 53],
1202 7
           'Scarlet'                                   => [253, 14, 53],
1203 7
           'Schauss Pink'                              => [255, 145, 175],
1204 7
           'School Bus Yellow'                         => [255, 216, 0],
1205 7
           'Screamin\' Green'                           => [118, 255, 122],
1206 7
           'Sea Blue'                                  => [0, 105, 148],
1207 7
           'Sea Green'                                 => [46, 139, 87],
1208 7
           'Seal Brown'                                => [89, 38, 11],
1209 7
           'Seashell'                                  => [255, 245, 238],
1210 7
           'Selective Yellow'                          => [255, 186, 0],
1211 7
           'Sepia'                                     => [112, 66, 20],
1212 7
           'Shadow'                                    => [138, 121, 93],
1213 7
           'Shadow Blue'                               => [119, 139, 165],
1214 7
           'Shampoo'                                   => [255, 207, 241],
1215 7
           'Shamrock Green'                            => [0, 158, 96],
1216 7
           'Sheen Green'                               => [143, 212, 0],
1217 7
           'Shimmering Blush'                          => [217, 134, 149],
1218 7
           'Shocking Pink'                             => [252, 15, 192],
1219 7
           'Shocking Pink (Crayola)'                   => [255, 111, 255],
1220 7
           'Sienna'                                    => [136, 45, 23],
1221 7
           'Silver'                                    => [192, 192, 192],
1222 7
           'Silver Chalice'                            => [172, 172, 172],
1223 7
           'Silver Lake Blue'                          => [93, 137, 186],
1224 7
           'Silver Pink'                               => [196, 174, 173],
1225 7
           'Silver Sand'                               => [191, 193, 194],
1226 7
           'Sinopia'                                   => [203, 65, 11],
1227 7
           'Skobeloff'                                 => [0, 116, 116],
1228 7
           'Sky Blue'                                  => [135, 206, 235],
1229 7
           'Sky Magenta'                               => [207, 113, 175],
1230 7
           'Slate Blue'                                => [106, 90, 205],
1231 7
           'Slate Gray'                                => [112, 128, 144],
1232 7
           'Smalt (Dark Powder Blue)'                  => [0, 51, 153],
1233 7
           'Smitten'                                   => [200, 65, 134],
1234 7
           'Smoke'                                     => [115, 130, 118],
1235 7
           'Smoky Black'                               => [16, 12, 8],
1236 7
           'Smoky Topaz'                               => [147, 61, 65],
1237 7
           'Snow'                                      => [255, 250, 250],
1238 7
           'Soap'                                      => [206, 200, 239],
1239 7
           'Solid Pink'                                => [137, 56, 67],
1240 7
           'Sonic Silver'                              => [117, 117, 117],
1241 7
           'Spartan Crimson'                           => [158, 19, 22],
1242 7
           'Space Cadet'                               => [29, 41, 81],
1243 7
           'Spanish Bistre'                            => [128, 117, 50],
1244 7
           'Spanish Blue'                              => [0, 112, 184],
1245 7
           'Spanish Carmine'                           => [209, 0, 71],
1246 7
           'Spanish Crimson'                           => [229, 26, 76],
1247 7
           'Spanish Gray'                              => [152, 152, 152],
1248 7
           'Spanish Green'                             => [0, 145, 80],
1249 7
           'Spanish Orange'                            => [232, 97, 0],
1250 7
           'Spanish Pink'                              => [247, 191, 190],
1251 7
           'Spanish Red'                               => [230, 0, 38],
1252 7
           'Spanish Sky Blue'                          => [0, 255, 255],
1253 7
           'Spanish Violet'                            => [76, 40, 130],
1254 7
           'Spanish Viridian'                          => [0, 127, 92],
1255 7
           'Spicy Mix'                                 => [139, 95, 77],
1256 7
           'Spiro Disco Ball'                          => [15, 192, 252],
1257 7
           'Spring Bud'                                => [167, 252, 0],
1258 7
           'Spring Green'                              => [0, 255, 127],
1259 7
           'Star Command Blue'                         => [0, 123, 184],
1260 7
           'Steel Blue'                                => [70, 130, 180],
1261 7
           'Steel Pink'                                => [204, 51, 204],
1262 7
           'Stil De Grain Yellow'                      => [250, 218, 94],
1263 7
           'Stizza'                                    => [153, 0, 0],
1264 7
           'Stormcloud'                                => [79, 102, 106],
1265 7
           'Straw'                                     => [228, 217, 111],
1266 7
           'Strawberry'                                => [252, 90, 141],
1267 7
           'Sunglow'                                   => [255, 204, 51],
1268 7
           'Sunray'                                    => [227, 171, 87],
1269 7
           'Sunset'                                    => [250, 214, 165],
1270 7
           'Sunset Orange'                             => [253, 94, 83],
1271 7
           'Super Pink'                                => [207, 107, 169],
1272 7
           'Tan'                                       => [210, 180, 140],
1273 7
           'Tangelo'                                   => [249, 77, 0],
1274 7
           'Tangerine'                                 => [242, 133, 0],
1275 7
           'Tangerine Yellow'                          => [255, 204, 0],
1276 7
           'Tango Pink'                                => [228, 113, 122],
1277 7
           'Taupe'                                     => [72, 60, 50],
1278 7
           'Taupe Gray'                                => [139, 133, 137],
1279 7
           'Tea Green'                                 => [208, 240, 192],
1280 7
           'Tea Rose'                                  => [244, 194, 194],
1281 7
           'Teal'                                      => [0, 128, 128],
1282 7
           'Teal Blue'                                 => [54, 117, 136],
1283 7
           'Teal Deer'                                 => [153, 230, 179],
1284 7
           'Teal Green'                                => [0, 130, 127],
1285 7
           'Telemagenta'                               => [207, 52, 118],
1286 7
           'Tenné'                                     => [205, 87, 0],
1287 7
           'Terra Cotta'                               => [226, 114, 91],
1288 7
           'Thistle'                                   => [216, 191, 216],
1289 7
           'Thulian Pink'                              => [222, 111, 161],
1290 7
           'Tickle Me Pink'                            => [252, 137, 172],
1291 7
           'Tiffany Blue'                              => [10, 186, 181],
1292 7
           'Tiger\'s Eye'                              => [224, 141, 60],
1293 7
           'Timberwolf'                                => [219, 215, 210],
1294 7
           'Titanium Yellow'                           => [238, 230, 0],
1295 7
           'Tomato'                                    => [255, 99, 71],
1296 7
           'Toolbox'                                   => [116, 108, 192],
1297 7
           'Topaz'                                     => [255, 200, 124],
1298 7
           'Tractor Red'                               => [253, 14, 53],
1299 7
           'Trolley Grey'                              => [128, 128, 128],
1300 7
           'Tropical Rain Forest'                      => [0, 117, 94],
1301 7
           'Tropical Violet'                           => [205, 164, 222],
1302 7
           'True Blue'                                 => [0, 115, 207],
1303 7
           'Tufts Blue'                                => [65, 125, 193],
1304 7
           'Tulip'                                     => [255, 135, 141],
1305 7
           'Tumbleweed'                                => [222, 170, 136],
1306 7
           'Turkish Rose'                              => [181, 114, 129],
1307 7
           'Turquoise'                                 => [64, 224, 208],
1308 7
           'Turquoise Blue'                            => [0, 255, 239],
1309 7
           'Turquoise Green'                           => [160, 214, 180],
1310 7
           'Tuscan'                                    => [250, 214, 165],
1311 7
           'Tuscan Brown'                              => [111, 78, 55],
1312 7
           'Tuscan Red'                                => [124, 72, 72],
1313 7
           'Tuscan Tan'                                => [166, 123, 91],
1314 7
           'Tuscany'                                   => [192, 153, 153],
1315 7
           'Twilight Lavender'                         => [138, 73, 107],
1316 7
           'Tyrian Purple'                             => [102, 2, 60],
1317 7
           'UA Blue'                                   => [0, 51, 170],
1318 7
           'UA Red'                                    => [217, 0, 76],
1319 7
           'Ube'                                       => [136, 120, 195],
1320 7
           'UCLA Blue'                                 => [83, 104, 149],
1321 7
           'UCLA Gold'                                 => [255, 179, 0],
1322 7
           'UFO Green'                                 => [60, 208, 112],
1323 7
           'Ultramarine'                               => [63, 0, 255],
1324 7
           'Ultramarine Blue'                          => [65, 102, 245],
1325 7
           'Ultra Pink'                                => [255, 111, 255],
1326 7
           'Ultra Red'                                 => [252, 108, 133],
1327 7
           'Umber'                                     => [99, 81, 71],
1328 7
           'Unbleached Silk'                           => [255, 221, 202],
1329 7
           'United Nations Blue'                       => [91, 146, 229],
1330 7
           'University Of California Gold'             => [183, 135, 39],
1331 7
           'Unmellow Yellow'                           => [255, 255, 102],
1332 7
           'UP Forest Green'                           => [1, 68, 33],
1333 7
           'UP Maroon'                                 => [123, 17, 19],
1334 7
           'Upsdell Red'                               => [174, 32, 41],
1335 7
           'Urobilin'                                  => [225, 173, 33],
1336 7
           'USAFA Blue'                                => [0, 79, 152],
1337 7
           'USC Cardinal'                              => [153, 0, 0],
1338 7
           'USC Gold'                                  => [255, 204, 0],
1339 7
           'University Of Tennessee Orange'            => [247, 127, 0],
1340 7
           'Utah Crimson'                              => [211, 0, 63],
1341 7
           'Vanilla'                                   => [243, 229, 171],
1342 7
           'Vanilla Ice'                               => [243, 143, 169],
1343 7
           'Vegas Gold'                                => [197, 179, 88],
1344 7
           'Venetian Red'                              => [200, 8, 21],
1345 7
           'Verdigris'                                 => [67, 179, 174],
1346 7
           'Vermilion'                                 => [217, 56, 30],
1347 7
           'Veronica'                                  => [160, 32, 240],
1348 7
           'Very Light Azure'                          => [116, 187, 251],
1349 7
           'Very Light Blue'                           => [102, 102, 255],
1350 7
           'Very Light Malachite Green'                => [100, 233, 134],
1351 7
           'Very Light Tangelo'                        => [255, 176, 119],
1352 7
           'Very Pale Orange'                          => [255, 223, 191],
1353 7
           'Very Pale Yellow'                          => [255, 255, 191],
1354 7
           'Violet'                                    => [143, 0, 255],
1355 7
           'Violet (Color Wheel)'                      => [127, 0, 255],
1356 7
           'Violet (RYB)'                              => [134, 1, 175],
1357 7
           'Violet (Web)'                              => [238, 130, 238],
1358 7
           'Violet-Blue'                               => [50, 74, 178],
1359 7
           'Violet-Red'                                => [247, 83, 148],
1360 7
           'Viridian'                                  => [64, 130, 109],
1361 7
           'Viridian Green'                            => [0, 150, 152],
1362 7
           'Vista Blue'                                => [124, 158, 217],
1363 7
           'Vivid Amber'                               => [204, 153, 0],
1364 7
           'Vivid Auburn'                              => [146, 39, 36],
1365 7
           'Vivid Burgundy'                            => [159, 29, 53],
1366 7
           'Vivid Cerise'                              => [218, 29, 129],
1367 7
           'Vivid Cerulean'                            => [0, 170, 238],
1368 7
           'Vivid Crimson'                             => [204, 0, 51],
1369 7
           'Vivid Gamboge'                             => [255, 153, 0],
1370 7
           'Vivid Lime Green'                          => [166, 214, 8],
1371 7
           'Vivid Malachite'                           => [0, 204, 51],
1372 7
           'Vivid Mulberry'                            => [184, 12, 227],
1373 7
           'Vivid Orange'                              => [255, 95, 0],
1374 7
           'Vivid Orange Peel'                         => [255, 160, 0],
1375 7
           'Vivid Orchid'                              => [204, 0, 255],
1376 7
           'Vivid Raspberry'                           => [255, 0, 108],
1377 7
           'Vivid Red'                                 => [247, 13, 26],
1378 7
           'Vivid Red-Tangelo'                         => [223, 97, 36],
1379 7
           'Vivid Sky Blue'                            => [0, 204, 255],
1380 7
           'Vivid Tangelo'                             => [240, 116, 39],
1381 7
           'Vivid Tangerine'                           => [255, 160, 137],
1382 7
           'Vivid Vermilion'                           => [229, 96, 36],
1383 7
           'Vivid Violet'                              => [159, 0, 255],
1384 7
           'Vivid Yellow'                              => [255, 227, 2],
1385 7
           'Volt'                                      => [206, 255, 0],
1386 7
           'Warm Black'                                => [0, 66, 66],
1387 7
           'Waterspout'                                => [164, 244, 249],
1388 7
           'Weldon Blue'                               => [124, 152, 171],
1389 7
           'Wenge'                                     => [100, 84, 82],
1390 7
           'Wheat'                                     => [245, 222, 179],
1391 7
           'White'                                     => [255, 255, 255],
1392 7
           'White Smoke'                               => [245, 245, 245],
1393 7
           'Wild Blue Yonder'                          => [162, 173, 208],
1394 7
           'Wild Orchid'                               => [212, 112, 162],
1395 7
           'Wild Strawberry'                           => [255, 67, 164],
1396 7
           'Wild Watermelon'                           => [252, 108, 133],
1397 7
           'Willpower Orange'                          => [253, 88, 0],
1398 7
           'Windsor Tan'                               => [167, 85, 2],
1399 7
           'Wine'                                      => [114, 47, 55],
1400 7
           'Wine Dregs'                                => [103, 49, 71],
1401 7
           'Wisteria'                                  => [201, 160, 220],
1402 7
           'Wood Brown'                                => [193, 154, 107],
1403 7
           'Xanadu'                                    => [115, 134, 120],
1404 7
           'Yale Blue'                                 => [15, 77, 146],
1405 7
           'Yankees Blue'                              => [28, 40, 65],
1406 7
           'Yellow'                                    => [255, 255, 0],
1407 7
           'Yellow (Crayola)'                          => [252, 232, 131],
1408 7
           'Yellow (Munsell)'                          => [239, 204, 0],
1409 7
           'Yellow (NCS)'                              => [255, 211, 0],
1410 7
           'Yellow (Pantone)'                          => [254, 223, 0],
1411 7
           'Yellow (Process)'                          => [255, 239, 0],
1412 7
           'Yellow (RYB)'                              => [254, 254, 51],
1413 7
           'Yellow-Green'                              => [154, 205, 50],
1414 7
           'Yellow Orange'                             => [255, 174, 66],
1415 7
           'Yellow Rose'                               => [255, 240, 0],
1416 7
           'Zaffre'                                    => [0, 20, 168],
1417 7
           'Zinnwaldite Brown'                         => [44, 22, 8],
1418 7
           'Zomp'                                      => [57, 167, 14]
1419 7
        ];
1420
1421
    }
1422
}
1423