Completed
Pull Request — master (#10)
by Yılmaz
02:30
created

Color   A

Complexity

Total Complexity 26

Size/Duplication

Total Lines 1436
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 26
lcom 1
cbo 0
dl 0
loc 1436
ccs 1243
cts 1243
cp 1
rs 9.2173
c 0
b 0
f 0

15 Methods

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