forked from ImageMagick/ImageMagick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor.html
4939 lines (4220 loc) · 155 KB
/
color.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>ImageMagick: Color Names</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="application-name" content="ImageMagick">
<meta name="description" content="ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-2000, GIF, WebP, Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.">
<meta name="application-url" content="http://www.imagemagick.org">
<meta name="generator" content="PHP">
<meta name="keywords" content="color, names, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert">
<meta name="rating" content="GENERAL">
<meta name="robots" content="INDEX, FOLLOW">
<meta name="generator" content="ImageMagick Studio LLC">
<meta name="author" content="ImageMagick Studio LLC">
<meta name="revisit-after" content="2 DAYS">
<meta name="resource-type" content="document">
<meta name="copyright" content="Copyright (c) 1999-2015 ImageMagick Studio LLC">
<meta name="distribution" content="Global">
<meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1">
<link rel="icon" href="../images/wand.png">
<link rel="shortcut icon" href="../images/wand.ico">
<link rel="stylesheet" href="../css/magick.html">
</head>
<body>
<div class="main">
<div class="magick-masthead">
<div class="container">
<script async="async" src="http://localhost/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3129977114552745" data-ad-slot="6345125851" data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<nav class="magick-nav">
<a class="magick-nav-item " href="../index.html">Home</a>
<a class="magick-nav-item " href="binary-releases.html">Download</a>
<a class="magick-nav-item " href="command-line-tools.html">Tools</a>
<a class="magick-nav-item " href="command-line-options.html">Options</a>
<a class="magick-nav-item " href="resources.html">Resources</a>
<a class="magick-nav-item " href="api.html">Develop</a>
<a class="magick-nav-item " href="http://nextgen.imagemagick.org/script/search.php">Search</a>
<a class="magick-nav-item pull-right" href="http://www.imagemagick.org/discourse-server/">Community</a>
</nav>
</div>
</div>
<div class="container">
<div class="magick-header">
<p class="text-center"><a href="color.html#usage">Example Usage</a> • <a href="color.html#models">Color Model Specification</a> • <a href="color.html#color_names">List of Color Names</a></p>
<p class="lead magick-description">A number of ImageMagick options and methods take a color as an argument. The color can then be given as a color name (there is a limited but large set of these; see below) or it can be given as a set of numbers (in decimal or hexadecimal), each corresponding to a channel in an RGB or RGBA color model. HSL, HSLA, HSB, HSBA, CMYK, or CMYKA color models may also be specified. These topics are briefly described in the sections below.</p>
<p>Use the <a href="../contrib/color-converter.html">Color Converter</a> to supply any valid ImageMagick color specification as described below to see a color swatch of that color and to convert to all the other color models.</p>
<h2 class="magick-header"><a id="usage"></a>Example Usage</h2>
<p>Each of the following commands produces the same <var>lime</var> border around the image. (Use "double quotes" for Windows.)</p>
<pre>
convert -bordercolor lime -border 10 image.jpg image.png
convert -bordercolor '#0f0' -border 10 image.jpg image.png
convert -bordercolor '#00ff00' -border 10 image.jpg image.png
convert -bordercolor 'rgb(0,255,0)' -border 10 image.jpg image.png
convert -bordercolor 'rgb(0,100%,0)' -border 10 image.jpg image.png
</pre>
<p>The list of recognized color names (for example, <var>aqua</var>, <var>black</var>, <var>blue</var>, <var>fuchsia</var>, <var>gray</var>, <var>green</var>, <var>lime</var>, <var>maroon</var>, <var>navy</var>, <var>olive</var>, <var>purple</var>, <var>red</var>, <var>silver</var>, <var>teal</var>, <var>white</var>, <var>yellow</var>, and others) is shown in a table further below.</p>
<h2 class="magick-header"><a id="models"></a>Color Model Specification</h2>
<p>The sRGB, CMYK, HSL and HSB color models are used in numerical color specifications. These examples all specify the same red sRGB color:</p>
<pre>
#f00 #rgb
#ff0000 #rrggbb
#ff0000ff #rrggbbaa
#ffff00000000 #rrrrggggbbbb
#ffff00000000ffff #rrrrggggbbbbaaaa
rgb(255, 0, 0) an integer in the range 0—255 for each component
rgb(100.0%, 0.0%, 0.0%) a float in the range 0—100% for each component
</pre>
<p>The format of an sRGB value in hexadecimal notation is a '#' immediately followed by either three, six, or twelve hexadecimal characters. The three-digit sRGB notation (#rgb) is converted into six-digit form (#rrggbb) by replicating digits, not by adding zeros. For example, #fb0 expands to #ffbb00. This ensures that white (#ffffff) can be specified with the short notation (#fff) and removes any dependencies on the color depth of the image. Use the hexadecimal notation whenever performance is an issue. ImageMagick does not need to load the expansive color table to interpret a hexadecimal color, e.g., <code>#000000</code>, but it does if <code>black</code> is used instead.</p>
<p>The format of an sRGB value in the functional notation is 'rgb(<var>r</var>,<var>g</var>,<var>b</var>)', where <var>r</var>, <var>g</var>, and <var>b</var> are either three integer or float values in the range 0—255 or three integer or float percentage values in the range 0—100%. The value 255 corresponds to 100%, and to #F or #FF in the hexadecimal notation: rgb(255, 255, 255) = rgb(100%, 100%, 100%) = #FFF = #FFFFFF. </p>
<p>White space characters are allowed around the numerical values, at least if the entire color argument is enclosed in quotes ('single quotes' for Unix-like systems, "double quotes" for Windows).</p>
<p>The sRGB color model is extended in this specification to include <var>alpha</var> to allow specification of the transparency of a color. These examples all specify the same color:</p>
<pre>
rgb(255, 0, 0) range 0 - 255
rgba(255, 0, 0, 1.0) the same, with an explicit alpha value
rgb(100%, 0%, 0%) range 0.0% - 100.0%
rgba(100%, 0%, 0%, 1.0) the same, with an explicit alpha value
</pre>
<p>The format of an RGBA value in the functional notation is 'rgba(<var>r</var>,<var>g</var>,<var>b</var>,<var>a</var>)', where <var>r</var>, <var>g</var>, and <var>b</var> are as described above for the RGB functional notation, and where the alpha value <var>a</var> ranges from 0.0 (fully transparent) to 1.0 (fully opaque).</p>
<p>There is also a color called 'none' that is fully transparent. This color is shorthand for <code>rgba(0, 0, 0, 0.0)</code>.</p>
<p>Gray values are conveniently defined with a single intensity value or an intensity value and an alpha value:</p>
<pre>
gray(50%) mid gray
graya(50%, 0.5) semi-transparent mid gray
</pre>
<p>The ImageMagick color model also supports hue-saturation-lightness (HSL) and hue-saturation-brightness (HSB) colors as a complement to numerical sRGB colors. HSL colors are encoding as a triple (hue, saturation, lightness). Likewise HSB colors are encoding as a triple (hue, saturation, brightness). HSL or HSB triples are either direct values (hue 0—360, saturation 0—255, ligthness or brightness 0—255) or as percentage values relative to these ranges.</p>
<p>The HSB color system is geometrically represented as a cone with its apex pointing downward. Hue is measured around the perimeter. Saturation is measured from the axis outward. Brightness is measured from the apex upward.</p>
<p>The HSL color system is geometrically represented as a stacked double cone with one apex pointing downward and the other pointing upward. The widest ends of both cones are stacked together one on top of the other. Hue is measured around the perimeter. Saturation is measured from the axis outward. Lightness is measured from the bottom apex upward.</p>
<p>See <a href="http://en.wikipedia.org/wiki/HSL_and_HSV">http://en.wikipedia.org/wiki/HSL_and_HSV</a> for more details on HSL and HSB color systems.</p>
<p>Hue is represented as an angle of the color around the circular perimeter of the cone(s) (i.e. the rainbow represented in a circle). Hue values are either integer or floats in the range 0—360 or integer or float percentage values in the range 0—100%. By definition red=0=360 (or 0%=100%), and the other colors are spread around the circle, so green=120 (or 33.3333%), blue=240 (or (66.6667%), etc. As an angle, it implicitly wraps around such that -120=240 and 480=120, for instance. (Students of trigonometry would say that "coterminal angles are equivalent" here; an angle <var>θ</var> can be standardized by computing the equivalent angle, <var>θ</var> mod 360.)</p>
<p>Saturation is measure outward from the central axis of the cone(s) toward the perimeter of the cone(s). Saturation may be expressed as an integer or float in the range 0—255 or as an integer or float percentage in the range 0—100. Saturation may be thought of as the absence of any "white" mixed with the base color. Thus 255 or 100% is full saturation and corresponds to a point on the outside surface of the cone (HSB) or double cone (HSL). It will be the most "colorful" region. 0 or 0% is no saturation which results in some shade of gray. It occurs along the central axis of the cone or double cone with black at the bottom apex and white at the top.</p>
<p>Brightness and Lightness also may be represented as integers or floats in the range 0—255 or as integer or float percentages in the range 0—100%. Brightness and Lightness are measured from the bottom apex upward to the top of the cone or double cone along the cone(s) central axis. 0 or 0% corresponds to the bottom apex and 255 or 100% corresponds to the top center of the cone for Brightness and to the top apex of the double cone for Lightness.</p>
<p>The HSB color system is a little easier to understand than the HSL color system. In the HSB color system, black is at the bottom apex and white is at the top center of the cone on the central axis. The most colorful or saturated colors will then be at the outer edge of the top of the cone at the widest part. Thus at Saturation=100% and Brightness=100%</p>
<pre>
hsb(0%, 100%, 100%) or hsb(0, 255, 255) full red
hsb(33.3333%, 100%, 100%) or hsb(120, 255, 255) full green
hsb(33.3333%, 100%, 75%) or hsb(120, 255, 191.25) medium green
hsb(33.3333%, 100%, 50%) or hsb(120, 255, 127.5) dark green
hsb(33.3333%, 100%, 25%) or hsb(120, 255, 63.75) very dark green
hsb(33.3333%, 50%, 50%) or hsb(120, 127.5, 127.5) pastel green
</pre>
<p>In the HSL color system, black is at the bottom apex and white is at the top apex. However, saturation is largest at the middle of the double cone on its outer perimeter and thus at a lightness value of 50%. The most colorful or saturated colors will then be at the outer edge of the double cone at its widest part. Thus at Saturation=100% and Brightness=50%</p>
<pre>
hsl(0%, 100%, 50%) or hsl(0, 255, 127.5) full red
hsl(33.3333%, 100%, 100%) or hsl(120, 255, 255) white
hsl(33.3333%, 100%, 75%) or hsl(120, 255, 191.25) pastel green
hsl(33.3333%, 100%, 50%) or hsl(120, 255, 127.5) full green
hsl(33.3333%, 100%, 25%) or hsl(120, 255, 63.75) dark green
hsl(33.3333%, 50%, 50%) or hsl(120, 127.5, 127.5) medium green
</pre>
<p>One advantage of HSB or HSL over RGB is that it can be more intuitive: you can guess at the colors you want, and then tweak. It is also easier to create sets of matching colors (by keeping the hue the same and varying the brightness or lightness and saturation, for example).</p>
<p>Just as the 'rgb()' functional notation has the 'rgba()' alpha counterpart, the 'hsl()' and 'hsb()' functional notations have their 'hsla()' 'hsba()' alpha counterparts. These examples specify the same color:</p>
<pre>
hsb(33.3333%, 100%, 100%) full green in hsb
hsba(33.3333%, 100%, 100%, 1.0) the same, with an alpha value of 1.0
hsb(120, 255, 255) full green in hsb
hsba(120, 255, 255, 1.0) the same, with an alpha value of 1.0
hsl(33.3333%, 100%, 50%) full green in hsl
hsla(33.3333%, 100%, 50%, 1.0) the same, with an alpha value of 1.0
hsl(120, 255, 127.5) full green in hsl
hsla(120, 255, 127.5, 1.0) the same, with an alpha value of 1.0
</pre>
<p>Prior to ImageMagick 6.5.6-6, HSL (HSB) could only be specified with Hue in range 0—360, but Saturation and Lightness (Brightness) as percent in range 0—100%.</p>
<p>Specify the Lab colors like this:</p>
<pre>
cielab(62.253188, 23.950124, 48.410653)
</pre>
<p>Note, the <code>a</code> and <code>b</code> components of any Lab color you specify are biased internally by 50% to ensure it fits in the quantum range (typically 0 to 65535). The bias is retained when writing to the TIFF and MIFF image formats. However, the TXT format supports negative pixel values so the bias is removed when writing to this format:</p>
<pre class="text">
-> convert xc:cyan -colorspace LAB txt:
# ImageMagick pixel enumeration: 1,1,65535,cielab
0,0: (91.1131%,-18.8571%,-5.5436%) #E93F00000000 cielab(91.1131%,-18.8571%,-5.5436%)
-> convert -size 100x100 xc:"cielab(91.1131%,-18.8571%,-5.5436%)" -colorspace sRGB cyan.png
</pre>
<p>Or specify colors generically with the <code>icc-color</code> keyword, for example:</p>
<pre>
icc-color(cmyk, 0.11, 0.48, 0.83, 0.00)
icc-color(rgb, white)
</pre>
<p>Or specify uncalibrated device colors with the <code>device-</code> keyword, for example:</p>
<pre>
device-gray(0.5)
device-rgb(0.5, 1.0, 0.0)
device-cmyk(0.11, 0.48, 0.83, 0.00)
</pre>
<h2 class="magick-header"><a id="color_names"></a>List of Color Names</h2>
<p>The table below provides a list of named colors recognized by ImageMagick:</p>
<table class="table table-condensed table-striped">
<tbody>
<tr>
<th align="right">Name</th>
<th align="center">Color</th>
<th align="left">RGB</th>
<th align="left">Hex</th>
</tr>
<tr>
<td align="right">snow</td>
<td align="center" style="background-color: rgb(255, 250, 250)">snow</td>
<td align="left">rgb(255, 250, 250)</td>
<td align="left">#FFFAFA</td>
</tr>
<tr>
<td align="right">snow1</td>
<td align="center" style="background-color: rgb(255, 250, 250)">snow1</td>
<td align="left">rgb(255, 250, 250)</td>
<td align="left">#FFFAFA</td>
</tr>
<tr>
<td align="right">snow2</td>
<td align="center" style="background-color: rgb(238, 233, 233)">snow2</td>
<td align="left">rgb(238, 233, 233)</td>
<td align="left">#EEE9E9</td>
</tr>
<tr>
<td align="right">RosyBrown1</td>
<td align="center" style="background-color: rgb(255, 193, 193)">RosyBrown1</td>
<td align="left">rgb(255, 193, 193)</td>
<td align="left">#FFC1C1</td>
</tr>
<tr>
<td align="right">RosyBrown2</td>
<td align="center" style="background-color: rgb(238, 180, 180)">RosyBrown2</td>
<td align="left">rgb(238, 180, 180)</td>
<td align="left">#EEB4B4</td>
</tr>
<tr>
<td align="right">snow3</td>
<td align="center" style="background-color: rgb(205, 201, 201)">snow3</td>
<td align="left">rgb(205, 201, 201)</td>
<td align="left">#CDC9C9</td>
</tr>
<tr>
<td align="right">LightCoral</td>
<td align="center" style="background-color: rgb(240, 128, 128)">LightCoral</td>
<td align="left">rgb(240, 128, 128)</td>
<td align="left">#F08080</td>
</tr>
<tr>
<td align="right">IndianRed1</td>
<td align="center" style="background-color: rgb(255, 106, 106)">IndianRed1</td>
<td align="left">rgb(255, 106, 106)</td>
<td align="left">#FF6A6A</td>
</tr>
<tr>
<td align="right">RosyBrown3</td>
<td align="center" style="background-color: rgb(205, 155, 155)">RosyBrown3</td>
<td align="left">rgb(205, 155, 155)</td>
<td align="left">#CD9B9B</td>
</tr>
<tr>
<td align="right">IndianRed2</td>
<td align="center" style="background-color: rgb(238, 99, 99)">IndianRed2</td>
<td align="left">rgb(238, 99, 99)</td>
<td align="left">#EE6363</td>
</tr>
<tr>
<td align="right">RosyBrown</td>
<td align="center" style="background-color: rgb(188, 143, 143)">RosyBrown</td>
<td align="left">rgb(188, 143, 143)</td>
<td align="left">#BC8F8F</td>
</tr>
<tr>
<td align="right">brown1</td>
<td align="center" style="background-color: rgb(255, 64, 64)">brown1</td>
<td align="left">rgb(255, 64, 64)</td>
<td align="left">#FF4040</td>
</tr>
<tr>
<td align="right">firebrick1</td>
<td align="center" style="background-color: rgb(255, 48, 48)">firebrick1</td>
<td align="left">rgb(255, 48, 48)</td>
<td align="left">#FF3030</td>
</tr>
<tr>
<td align="right">brown2</td>
<td align="center" style="background-color: rgb(238, 59, 59)">brown2</td>
<td align="left">rgb(238, 59, 59)</td>
<td align="left">#EE3B3B</td>
</tr>
<tr>
<td align="right">IndianRed</td>
<td align="center" style="background-color: rgb(205, 92, 92)">IndianRed</td>
<td align="left">rgb(205, 92, 92)</td>
<td align="left">#CD5C5C</td>
</tr>
<tr>
<td align="right">IndianRed3</td>
<td align="center" style="background-color: rgb(205, 85, 85)">IndianRed3</td>
<td align="left">rgb(205, 85, 85)</td>
<td align="left">#CD5555</td>
</tr>
<tr>
<td align="right">firebrick2</td>
<td align="center" style="background-color: rgb(238, 44, 44)">firebrick2</td>
<td align="left">rgb(238, 44, 44)</td>
<td align="left">#EE2C2C</td>
</tr>
<tr>
<td align="right">snow4</td>
<td align="center" style="background-color: rgb(139, 137, 137)">snow4</td>
<td align="left">rgb(139, 137, 137)</td>
<td align="left">#8B8989</td>
</tr>
<tr>
<td align="right">brown3</td>
<td align="center" style="background-color: rgb(205, 51, 51)">brown3</td>
<td align="left">rgb(205, 51, 51)</td>
<td align="left">#CD3333</td>
</tr>
<tr>
<td align="right">red</td>
<td align="center" style="background-color: rgb(255, 0, 0)">red</td>
<td align="left">rgb(255, 0, 0)</td>
<td align="left">#FF0000</td>
</tr>
<tr>
<td align="right">red1</td>
<td align="center" style="background-color: rgb(255, 0, 0)">red1</td>
<td align="left">rgb(255, 0, 0)</td>
<td align="left">#FF0000</td>
</tr>
<tr>
<td align="right">RosyBrown4</td>
<td align="center" style="background-color: rgb(139, 105, 105)">RosyBrown4</td>
<td align="left">rgb(139, 105, 105)</td>
<td align="left">#8B6969</td>
</tr>
<tr>
<td align="right">firebrick3</td>
<td align="center" style="background-color: rgb(205, 38, 38)">firebrick3</td>
<td align="left">rgb(205, 38, 38)</td>
<td align="left">#CD2626</td>
</tr>
<tr>
<td align="right">red2</td>
<td align="center" style="background-color: rgb(238, 0, 0)">red2</td>
<td align="left">rgb(238, 0, 0)</td>
<td align="left">#EE0000</td>
</tr>
<tr>
<td align="right">firebrick</td>
<td align="center" style="background-color: rgb(178, 34, 34)">firebrick</td>
<td align="left">rgb(178, 34, 34)</td>
<td align="left">#B22222</td>
</tr>
<tr>
<td align="right">brown</td>
<td align="center" style="background-color: rgb(165, 42, 42)">brown</td>
<td align="left">rgb(165, 42, 42)</td>
<td align="left">#A52A2A</td>
</tr>
<tr>
<td align="right">red3</td>
<td align="center" style="background-color: rgb(205, 0, 0)">red3</td>
<td align="left">rgb(205, 0, 0)</td>
<td align="left">#CD0000</td>
</tr>
<tr>
<td align="right">IndianRed4</td>
<td align="center" style="background-color: rgb(139, 58, 58)">IndianRed4</td>
<td align="left">rgb(139, 58, 58)</td>
<td align="left">#8B3A3A</td>
</tr>
<tr>
<td align="right">brown4</td>
<td align="center" style="background-color: rgb(139, 35, 35)">brown4</td>
<td align="left">rgb(139, 35, 35)</td>
<td align="left">#8B2323</td>
</tr>
<tr>
<td align="right">firebrick4</td>
<td align="center" style="background-color: rgb(139, 26, 26)">firebrick4</td>
<td align="left">rgb(139, 26, 26)</td>
<td align="left">#8B1A1A</td>
</tr>
<tr>
<td align="right">DarkRed</td>
<td align="center" style="background-color: rgb(139, 0, 0)">DarkRed</td>
<td align="left">rgb(139, 0, 0)</td>
<td align="left">#8B0000</td>
</tr>
<tr>
<td align="right">red4</td>
<td align="center" style="background-color: rgb(139, 0, 0)">red4</td>
<td align="left">rgb(139, 0, 0)</td>
<td align="left">#8B0000</td>
</tr>
<tr>
<td align="right">maroon</td>
<td align="center" style="background-color: rgb(128, 0, 0)">maroon (SVG compliance)</td>
<td align="left">rgb(128, 0, 0)</td>
<td align="left">#800000</td>
</tr>
<tr>
<td align="right">LightPink1</td>
<td align="center" style="background-color: rgb(255, 174, 185)">LightPink1</td>
<td align="left">rgb(255, 174, 185)</td>
<td align="left">#FFAEB9</td>
</tr>
<tr>
<td align="right">LightPink3</td>
<td align="center" style="background-color: rgb(205, 140, 149)">LightPink3</td>
<td align="left">rgb(205, 140, 149)</td>
<td align="left">#CD8C95</td>
</tr>
<tr>
<td align="right">LightPink4</td>
<td align="center" style="background-color: rgb(139, 95, 101)">LightPink4</td>
<td align="left">rgb(139, 95, 101)</td>
<td align="left">#8B5F65</td>
</tr>
<tr>
<td align="right">LightPink2</td>
<td align="center" style="background-color: rgb(238, 162, 173)">LightPink2</td>
<td align="left">rgb(238, 162, 173)</td>
<td align="left">#EEA2AD</td>
</tr>
<tr>
<td align="right">LightPink</td>
<td align="center" style="background-color: rgb(255, 182, 193)">LightPink</td>
<td align="left">rgb(255, 182, 193)</td>
<td align="left">#FFB6C1</td>
</tr>
<tr>
<td align="right">pink</td>
<td align="center" style="background-color: rgb(255, 192, 203)">pink</td>
<td align="left">rgb(255, 192, 203)</td>
<td align="left">#FFC0CB</td>
</tr>
<tr>
<td align="right">crimson</td>
<td align="center" style="background-color: rgb(220, 20, 60)">crimson</td>
<td align="left">rgb(220, 20, 60)</td>
<td align="left">#DC143C</td>
</tr>
<tr>
<td align="right">pink1</td>
<td align="center" style="background-color: rgb(255, 181, 197)">pink1</td>
<td align="left">rgb(255, 181, 197)</td>
<td align="left">#FFB5C5</td>
</tr>
<tr>
<td align="right">pink2</td>
<td align="center" style="background-color: rgb(238, 169, 184)">pink2</td>
<td align="left">rgb(238, 169, 184)</td>
<td align="left">#EEA9B8</td>
</tr>
<tr>
<td align="right">pink3</td>
<td align="center" style="background-color: rgb(205, 145, 158)">pink3</td>
<td align="left">rgb(205, 145, 158)</td>
<td align="left">#CD919E</td>
</tr>
<tr>
<td align="right">pink4</td>
<td align="center" style="background-color: rgb(139, 99, 108)">pink4</td>
<td align="left">rgb(139, 99, 108)</td>
<td align="left">#8B636C</td>
</tr>
<tr>
<td align="right">PaleVioletRed4</td>
<td align="center" style="background-color: rgb(139, 71, 93)">PaleVioletRed4</td>
<td align="left">rgb(139, 71, 93)</td>
<td align="left">#8B475D</td>
</tr>
<tr>
<td align="right">PaleVioletRed</td>
<td align="center" style="background-color: rgb(219, 112, 147)">PaleVioletRed</td>
<td align="left">rgb(219, 112, 147)</td>
<td align="left">#DB7093</td>
</tr>
<tr>
<td align="right">PaleVioletRed2</td>
<td align="center" style="background-color: rgb(238, 121, 159)">PaleVioletRed2</td>
<td align="left">rgb(238, 121, 159)</td>
<td align="left">#EE799F</td>
</tr>
<tr>
<td align="right">PaleVioletRed1</td>
<td align="center" style="background-color: rgb(255, 130, 171)">PaleVioletRed1</td>
<td align="left">rgb(255, 130, 171)</td>
<td align="left">#FF82AB</td>
</tr>
<tr>
<td align="right">PaleVioletRed3</td>
<td align="center" style="background-color: rgb(205, 104, 137)">PaleVioletRed3</td>
<td align="left">rgb(205, 104, 137)</td>
<td align="left">#CD6889</td>
</tr>
<tr>
<td align="right">LavenderBlush</td>
<td align="center" style="background-color: rgb(255, 240, 245)">LavenderBlush</td>
<td align="left">rgb(255, 240, 245)</td>
<td align="left">#FFF0F5</td>
</tr>
<tr>
<td align="right">LavenderBlush1</td>
<td align="center" style="background-color: rgb(255, 240, 245)">LavenderBlush1</td>
<td align="left">rgb(255, 240, 245)</td>
<td align="left">#FFF0F5</td>
</tr>
<tr>
<td align="right">LavenderBlush3</td>
<td align="center" style="background-color: rgb(205, 193, 197)">LavenderBlush3</td>
<td align="left">rgb(205, 193, 197)</td>
<td align="left">#CDC1C5</td>
</tr>
<tr>
<td align="right">LavenderBlush2</td>
<td align="center" style="background-color: rgb(238, 224, 229)">LavenderBlush2</td>
<td align="left">rgb(238, 224, 229)</td>
<td align="left">#EEE0E5</td>
</tr>
<tr>
<td align="right">LavenderBlush4</td>
<td align="center" style="background-color: rgb(139, 131, 134)">LavenderBlush4</td>
<td align="left">rgb(139, 131, 134)</td>
<td align="left">#8B8386</td>
</tr>
<tr>
<td align="right">maroon</td>
<td align="center" style="background-color: rgb(176, 48, 96)">maroon (X11 compliance)</td>
<td align="left">rgb(176, 48, 96)</td>
<td align="left">#B03060</td>
</tr>
<tr>
<td align="right">HotPink3</td>
<td align="center" style="background-color: rgb(205, 96, 144)">HotPink3</td>
<td align="left">rgb(205, 96, 144)</td>
<td align="left">#CD6090</td>
</tr>
<tr>
<td align="right">VioletRed3</td>
<td align="center" style="background-color: rgb(205, 50, 120)">VioletRed3</td>
<td align="left">rgb(205, 50, 120)</td>
<td align="left">#CD3278</td>
</tr>
<tr>
<td align="right">VioletRed1</td>
<td align="center" style="background-color: rgb(255, 62, 150)">VioletRed1</td>
<td align="left">rgb(255, 62, 150)</td>
<td align="left">#FF3E96</td>
</tr>
<tr>
<td align="right">VioletRed2</td>
<td align="center" style="background-color: rgb(238, 58, 140)">VioletRed2</td>
<td align="left">rgb(238, 58, 140)</td>
<td align="left">#EE3A8C</td>
</tr>
<tr>
<td align="right">VioletRed4</td>
<td align="center" style="background-color: rgb(139, 34, 82)">VioletRed4</td>
<td align="left">rgb(139, 34, 82)</td>
<td align="left">#8B2252</td>
</tr>
<tr>
<td align="right">HotPink2</td>
<td align="center" style="background-color: rgb(238, 106, 167)">HotPink2</td>
<td align="left">rgb(238, 106, 167)</td>
<td align="left">#EE6AA7</td>
</tr>
<tr>
<td align="right">HotPink1</td>
<td align="center" style="background-color: rgb(255, 110, 180)">HotPink1</td>
<td align="left">rgb(255, 110, 180)</td>
<td align="left">#FF6EB4</td>
</tr>
<tr>
<td align="right">HotPink4</td>
<td align="center" style="background-color: rgb(139, 58, 98)">HotPink4</td>
<td align="left">rgb(139, 58, 98)</td>
<td align="left">#8B3A62</td>
</tr>
<tr>
<td align="right">HotPink</td>
<td align="center" style="background-color: rgb(255, 105, 180)">HotPink</td>
<td align="left">rgb(255, 105, 180)</td>
<td align="left">#FF69B4</td>
</tr>
<tr>
<td align="right">DeepPink</td>
<td align="center" style="background-color: rgb(255, 20, 147)">DeepPink</td>
<td align="left">rgb(255, 20, 147)</td>
<td align="left">#FF1493</td>
</tr>
<tr>
<td align="right">DeepPink1</td>
<td align="center" style="background-color: rgb(255, 20, 147)">DeepPink1</td>
<td align="left">rgb(255, 20, 147)</td>
<td align="left">#FF1493</td>
</tr>
<tr>
<td align="right">DeepPink2</td>
<td align="center" style="background-color: rgb(238, 18, 137)">DeepPink2</td>
<td align="left">rgb(238, 18, 137)</td>
<td align="left">#EE1289</td>
</tr>
<tr>
<td align="right">DeepPink3</td>
<td align="center" style="background-color: rgb(205, 16, 118)">DeepPink3</td>
<td align="left">rgb(205, 16, 118)</td>
<td align="left">#CD1076</td>
</tr>
<tr>
<td align="right">DeepPink4</td>
<td align="center" style="background-color: rgb(139, 10, 80)">DeepPink4</td>
<td align="left">rgb(139, 10, 80)</td>
<td align="left">#8B0A50</td>
</tr>
<tr>
<td align="right">maroon1</td>
<td align="center" style="background-color: rgb(255, 52, 179)">maroon1</td>
<td align="left">rgb(255, 52, 179)</td>
<td align="left">#FF34B3</td>
</tr>
<tr>
<td align="right">maroon2</td>
<td align="center" style="background-color: rgb(238, 48, 167)">maroon2</td>
<td align="left">rgb(238, 48, 167)</td>
<td align="left">#EE30A7</td>
</tr>
<tr>
<td align="right">maroon3</td>
<td align="center" style="background-color: rgb(205, 41, 144)">maroon3</td>
<td align="left">rgb(205, 41, 144)</td>
<td align="left">#CD2990</td>
</tr>
<tr>
<td align="right">maroon4</td>
<td align="center" style="background-color: rgb(139, 28, 98)">maroon4</td>
<td align="left">rgb(139, 28, 98)</td>
<td align="left">#8B1C62</td>
</tr>
<tr>
<td align="right">MediumVioletRed</td>
<td align="center" style="background-color: rgb(199, 21, 133)">MediumVioletRed</td>
<td align="left">rgb(199, 21, 133)</td>
<td align="left">#C71585</td>
</tr>
<tr>
<td align="right">VioletRed</td>
<td align="center" style="background-color: rgb(208, 32, 144)">VioletRed</td>
<td align="left">rgb(208, 32, 144)</td>
<td align="left">#D02090</td>
</tr>
<tr>
<td align="right">orchid2</td>
<td align="center" style="background-color: rgb(238, 122, 233)">orchid2</td>
<td align="left">rgb(238, 122, 233)</td>
<td align="left">#EE7AE9</td>
</tr>
<tr>
<td align="right">orchid</td>
<td align="center" style="background-color: rgb(218, 112, 214)">orchid</td>
<td align="left">rgb(218, 112, 214)</td>
<td align="left">#DA70D6</td>
</tr>
<tr>
<td align="right">orchid1</td>
<td align="center" style="background-color: rgb(255, 131, 250)">orchid1</td>
<td align="left">rgb(255, 131, 250)</td>
<td align="left">#FF83FA</td>
</tr>
<tr>
<td align="right">orchid3</td>
<td align="center" style="background-color: rgb(205, 105, 201)">orchid3</td>
<td align="left">rgb(205, 105, 201)</td>
<td align="left">#CD69C9</td>
</tr>
<tr>
<td align="right">orchid4</td>
<td align="center" style="background-color: rgb(139, 71, 137)">orchid4</td>
<td align="left">rgb(139, 71, 137)</td>
<td align="left">#8B4789</td>
</tr>
<tr>
<td align="right">thistle1</td>
<td align="center" style="background-color: rgb(255, 225, 255)">thistle1</td>
<td align="left">rgb(255, 225, 255)</td>
<td align="left">#FFE1FF</td>
</tr>
<tr>
<td align="right">thistle2</td>
<td align="center" style="background-color: rgb(238, 210, 238)">thistle2</td>
<td align="left">rgb(238, 210, 238)</td>
<td align="left">#EED2EE</td>
</tr>
<tr>
<td align="right">plum1</td>
<td align="center" style="background-color: rgb(255, 187, 255)">plum1</td>
<td align="left">rgb(255, 187, 255)</td>
<td align="left">#FFBBFF</td>
</tr>
<tr>
<td align="right">plum2</td>
<td align="center" style="background-color: rgb(238, 174, 238)">plum2</td>
<td align="left">rgb(238, 174, 238)</td>
<td align="left">#EEAEEE</td>
</tr>
<tr>
<td align="right">thistle</td>
<td align="center" style="background-color: rgb(216, 191, 216)">thistle</td>
<td align="left">rgb(216, 191, 216)</td>
<td align="left">#D8BFD8</td>
</tr>
<tr>
<td align="right">thistle3</td>
<td align="center" style="background-color: rgb(205, 181, 205)">thistle3</td>
<td align="left">rgb(205, 181, 205)</td>
<td align="left">#CDB5CD</td>
</tr>
<tr>
<td align="right">plum</td>
<td align="center" style="background-color: rgb(221, 160, 221)">plum</td>
<td align="left">rgb(221, 160, 221)</td>
<td align="left">#DDA0DD</td>
</tr>
<tr>
<td align="right">violet</td>
<td align="center" style="background-color: rgb(238, 130, 238)">violet</td>
<td align="left">rgb(238, 130, 238)</td>
<td align="left">#EE82EE</td>
</tr>
<tr>
<td align="right">plum3</td>
<td align="center" style="background-color: rgb(205, 150, 205)">plum3</td>
<td align="left">rgb(205, 150, 205)</td>
<td align="left">#CD96CD</td>
</tr>
<tr>
<td align="right">thistle4</td>
<td align="center" style="background-color: rgb(139, 123, 139)">thistle4</td>
<td align="left">rgb(139, 123, 139)</td>
<td align="left">#8B7B8B</td>
</tr>
<tr>
<td align="right">fuchsia</td>
<td align="center" style="background-color: rgb(255, 0, 255)">fuchsia</td>
<td align="left">rgb(255, 0, 255)</td>
<td align="left">#FF00FF</td>
</tr>
<tr>
<td align="right">magenta</td>
<td align="center" style="background-color: rgb(255, 0, 255)">magenta</td>
<td align="left">rgb(255, 0, 255)</td>
<td align="left">#FF00FF</td>
</tr>
<tr>
<td align="right">magenta1</td>
<td align="center" style="background-color: rgb(255, 0, 255)">magenta1</td>
<td align="left">rgb(255, 0, 255)</td>
<td align="left">#FF00FF</td>
</tr>
<tr>
<td align="right">plum4</td>
<td align="center" style="background-color: rgb(139, 102, 139)">plum4</td>
<td align="left">rgb(139, 102, 139)</td>
<td align="left">#8B668B</td>
</tr>
<tr>
<td align="right">magenta2</td>
<td align="center" style="background-color: rgb(238, 0, 238)">magenta2</td>
<td align="left">rgb(238, 0, 238)</td>
<td align="left">#EE00EE</td>
</tr>
<tr>
<td align="right">magenta3</td>
<td align="center" style="background-color: rgb(205, 0, 205)">magenta3</td>
<td align="left">rgb(205, 0, 205)</td>
<td align="left">#CD00CD</td>
</tr>
<tr>
<td align="right">DarkMagenta</td>
<td align="center" style="background-color: rgb(139, 0, 139)">DarkMagenta</td>
<td align="left">rgb(139, 0, 139)</td>
<td align="left">#8B008B</td>
</tr>
<tr>
<td align="right">magenta4</td>
<td align="center" style="background-color: rgb(139, 0, 139)">magenta4</td>
<td align="left">rgb(139, 0, 139)</td>
<td align="left">#8B008B</td>
</tr>
<tr>
<td align="right">purple</td>
<td align="center" style="background-color: rgb(128, 0, 128)">purple (SVG compliance)</td>
<td align="left">rgb(128, 0, 128)</td>
<td align="left">#800080</td>
</tr>
<tr>
<td align="right">MediumOrchid</td>
<td align="center" style="background-color: rgb(186, 85, 211)">MediumOrchid</td>
<td align="left">rgb(186, 85, 211)</td>
<td align="left">#BA55D3</td>
</tr>
<tr>
<td align="right">MediumOrchid1</td>
<td align="center" style="background-color: rgb(224, 102, 255)">MediumOrchid1</td>
<td align="left">rgb(224, 102, 255)</td>
<td align="left">#E066FF</td>
</tr>
<tr>
<td align="right">MediumOrchid2</td>
<td align="center" style="background-color: rgb(209, 95, 238)">MediumOrchid2</td>
<td align="left">rgb(209, 95, 238)</td>
<td align="left">#D15FEE</td>
</tr>
<tr>
<td align="right">MediumOrchid3</td>
<td align="center" style="background-color: rgb(180, 82, 205)">MediumOrchid3</td>
<td align="left">rgb(180, 82, 205)</td>
<td align="left">#B452CD</td>
</tr>
<tr>
<td align="right">MediumOrchid4</td>
<td align="center" style="background-color: rgb(122, 55, 139)">MediumOrchid4</td>
<td align="left">rgb(122, 55, 139)</td>
<td align="left">#7A378B</td>
</tr>
<tr>
<td align="right">DarkViolet</td>
<td align="center" style="background-color: rgb(148, 0, 211)">DarkViolet</td>
<td align="left">rgb(148, 0, 211)</td>
<td align="left">#9400D3</td>
</tr>
<tr>
<td align="right">DarkOrchid</td>
<td align="center" style="background-color: rgb(153, 50, 204)">DarkOrchid</td>
<td align="left">rgb(153, 50, 204)</td>
<td align="left">#9932CC</td>
</tr>
<tr>
<td align="right">DarkOrchid1</td>
<td align="center" style="background-color: rgb(191, 62, 255)">DarkOrchid1</td>
<td align="left">rgb(191, 62, 255)</td>
<td align="left">#BF3EFF</td>
</tr>
<tr>
<td align="right">DarkOrchid3</td>
<td align="center" style="background-color: rgb(154, 50, 205)">DarkOrchid3</td>
<td align="left">rgb(154, 50, 205)</td>
<td align="left">#9A32CD</td>
</tr>
<tr>
<td align="right">DarkOrchid2</td>
<td align="center" style="background-color: rgb(178, 58, 238)">DarkOrchid2</td>
<td align="left">rgb(178, 58, 238)</td>
<td align="left">#B23AEE</td>
</tr>
<tr>
<td align="right">DarkOrchid4</td>
<td align="center" style="background-color: rgb(104, 34, 139)">DarkOrchid4</td>
<td align="left">rgb(104, 34, 139)</td>
<td align="left">#68228B</td>
</tr>
<tr>
<td align="right">purple</td>
<td align="center" style="background-color: rgb(160, 32, 240)">purple (X11 compliance)</td>
<td align="left">rgb(160, 32, 240)</td>
<td align="left">#A020F0</td>
</tr>
<tr>
<td align="right">indigo</td>
<td align="center" style="background-color: rgb( 75, 0, 130)">indigo</td>
<td align="left">rgb( 75, 0, 130)</td>
<td align="left">#4B0082</td>
</tr>
<tr>
<td align="right">BlueViolet</td>
<td align="center" style="background-color: rgb(138, 43, 226)">BlueViolet</td>
<td align="left">rgb(138, 43, 226)</td>
<td align="left">#8A2BE2</td>
</tr>
<tr>
<td align="right">purple2</td>
<td align="center" style="background-color: rgb(145, 44, 238)">purple2</td>
<td align="left">rgb(145, 44, 238)</td>
<td align="left">#912CEE</td>
</tr>
<tr>
<td align="right">purple3</td>
<td align="center" style="background-color: rgb(125, 38, 205)">purple3</td>