Completed
Pull Request — master (#5)
by Yılmaz
13:43
created

Color::toHex()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

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

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

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

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