-
Notifications
You must be signed in to change notification settings - Fork 157
/
VTKNamedColorPatches.html
1907 lines (1895 loc) · 71.1 KB
/
VTKNamedColorPatches.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>
<meta charset="UTF-8" />
<title>vtkNamedColors</title>
<style>
body {
background-color: snow
}
h1 {text-align:left;}
h2 {text-align:left;}
h3 {text-align:left;}
h4 {text-align:left;}
h5 {text-align:left;}
h6 {text-align:left;}
p {text-align:left;}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
font-size: medium;
padding: 4px;
}
th[colspan]:not([colspan="1"]) {
background: LightSteelBlue;
font-size: x-large;
text-align : center; vertical-align : top;
}
th {
background: LightSteelBlue;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
font-family: monospace;
font-size: medium;
font-weight: bold;
}
tr {
background: WhiteSmoke;
vertical-align : top;
}
td[colspan]:not([colspan="1"]) {
background: MintCream;
font-size: large;
text-align : center; vertical-align : top;
}
td {
background: WhiteSmoke;
}
.cour {
font-family: Courier;
}
html, body {
height: 100%;
}
html {
display: table;
margin: auto;
}
body {
display: table-cell;
vertical-align: middle;
}
thead {color: DarkGreen;}
tbody {color: MidnightBlue;}
tfoot {color: SaddleBrown;}
</style>
</head>
<body>
<h1>Colors available in vtkNamedColors</h1>
The class vtkNamedColors provides color names and their values for the convenience of the user.
<br>The following tables show the available colors along with their red, green and blue values.
<h2>Index</h2>
<ul>
<li><a href="#WebColorNames">Web color Names</a> These colors correspond to those in <a href="http://en.wikipedia.org/wiki/Web_colors" title="Web Colors">Web Colors</a>.
</li>
<li><a href="#VTKColorNames">VTK color Names</a>
The colors correspond to additional colors commonly used in VTK.
<br>The web colors take precedence over colors with
the same name (case insensitive) here.
</li>
<li><a href="#Synonyms">Synonyms</a></li>
</ul>
<table>
<tr>
<th colspan="3"><a id="WebColorNames">Web color Names</a></th>
</tr>
<tr>
<td>
<table>
<tr>
<th>HTML name</th>
<th>Decimal code<br>
  R    G    B</th>
</tr>
<tr>
<td colspan="2"><b>Red colors</b></td>
</tr>
<tr>
<td style="background:IndianRed;color:#ffffff">IndianRed</td>
<td style="background:IndianRed;color:#ffffff">205   92   92</td>
</tr>
<tr>
<td style="background:LightCoral;color:#000000">LightCoral</td>
<td style="background:LightCoral;color:#000000">240  128  128</td>
</tr>
<tr>
<td style="background:Salmon;color:#000000">Salmon</td>
<td style="background:Salmon;color:#000000">250  128  114</td>
</tr>
<tr>
<td style="background:DarkSalmon;color:#000000">DarkSalmon</td>
<td style="background:DarkSalmon;color:#000000">233  150  122</td>
</tr>
<tr>
<td style="background:LightSalmon;color:#000000">LightSalmon</td>
<td style="background:LightSalmon;color:#000000">255  160  122</td>
</tr>
<tr>
<td style="background:Red;color:#ffffff">Red</td>
<td style="background:Red;color:#ffffff">255    0    0</td>
</tr>
<tr>
<td style="background:Crimson;color:#ffffff">Crimson</td>
<td style="background:Crimson;color:#ffffff">220   20   60</td>
</tr>
<tr>
<td style="background:FireBrick;color:#ffffff">FireBrick</td>
<td style="background:FireBrick;color:#ffffff">178   34   34</td>
</tr>
<tr>
<td style="background:DarkRed;color:#ffffff">DarkRed</td>
<td style="background:DarkRed;color:#ffffff">139    0    0</td>
</tr>
<tr>
<td colspan="2"><b>Pink colors</b></td>
</tr>
<tr>
<td style="background:Pink;color:#000000">Pink</td>
<td style="background:Pink;color:#000000">255  192  203</td>
</tr>
<tr>
<td style="background:LightPink;color:#000000">LightPink</td>
<td style="background:LightPink;color:#000000">255  182  193</td>
</tr>
<tr>
<td style="background:HotPink;color:#000000">HotPink</td>
<td style="background:HotPink;color:#000000">255  105  180</td>
</tr>
<tr>
<td style="background:DeepPink;color:#ffffff">DeepPink</td>
<td style="background:DeepPink;color:#ffffff">255   20  147</td>
</tr>
<tr>
<td style="background:MediumVioletRed;color:#ffffff">MediumVioletRed</td>
<td style="background:MediumVioletRed;color:#ffffff">199   21  133</td>
</tr>
<tr>
<td style="background:PaleVioletRed;color:#000000">PaleVioletRed</td>
<td style="background:PaleVioletRed;color:#000000">219  112  147</td>
</tr>
<tr>
<td colspan="2"><b>Orange colors</b></td>
</tr>
<tr>
<td style="background:LightSalmon;color:#000000">LightSalmon</td>
<td style="background:LightSalmon;color:#000000">255  160  122</td>
</tr>
<tr>
<td style="background:Coral;color:#000000">Coral</td>
<td style="background:Coral;color:#000000">255  127   80</td>
</tr>
<tr>
<td style="background:Tomato;color:#000000">Tomato</td>
<td style="background:Tomato;color:#000000">255   99   71</td>
</tr>
<tr>
<td style="background:OrangeRed;color:#ffffff">OrangeRed</td>
<td style="background:OrangeRed;color:#ffffff">255   69    0</td>
</tr>
<tr>
<td style="background:DarkOrange;color:#000000">DarkOrange</td>
<td style="background:DarkOrange;color:#000000">255  140    0</td>
</tr>
<tr>
<td style="background:Orange;color:#000000">Orange</td>
<td style="background:Orange;color:#000000">255  165    0</td>
</tr>
<tr>
<td colspan="2"><b>Yellow colors</b></td>
</tr>
<tr>
<td style="background:Gold;color:#000000">Gold</td>
<td style="background:Gold;color:#000000">255  215    0</td>
</tr>
<tr>
<td style="background:Yellow;color:#000000">Yellow</td>
<td style="background:Yellow;color:#000000">255  255    0</td>
</tr>
<tr>
<td style="background:LightYellow;color:#000000">LightYellow</td>
<td style="background:LightYellow;color:#000000">255  255  224</td>
</tr>
<tr>
<td style="background:LemonChiffon;color:#000000">LemonChiffon</td>
<td style="background:LemonChiffon;color:#000000">255  250  205</td>
</tr>
<tr>
<td style="background:LightGoldenrodYellow;color:#000000">LightGoldenrodYellow</td>
<td style="background:LightGoldenrodYellow;color:#000000">250  250  210</td>
</tr>
<tr>
<td style="background:PapayaWhip;color:#000000">PapayaWhip</td>
<td style="background:PapayaWhip;color:#000000">255  239  213</td>
</tr>
<tr>
<td style="background:Moccasin;color:#000000">Moccasin</td>
<td style="background:Moccasin;color:#000000">255  228  181</td>
</tr>
<tr>
<td style="background:PeachPuff;color:#000000">PeachPuff</td>
<td style="background:PeachPuff;color:#000000">255  218  185</td>
</tr>
<tr>
<td style="background:PaleGoldenrod;color:#000000">PaleGoldenrod</td>
<td style="background:PaleGoldenrod;color:#000000">238  232  170</td>
</tr>
<tr>
<td style="background:Khaki;color:#000000">Khaki</td>
<td style="background:Khaki;color:#000000">240  230  140</td>
</tr>
<tr>
<td style="background:DarkKhaki;color:#000000">DarkKhaki</td>
<td style="background:DarkKhaki;color:#000000">189  183  107</td>
</tr>
<tr>
<td colspan="2"><b>Purple colors</b></td>
</tr>
<tr>
<td style="background:Lavender;color:#000000">Lavender</td>
<td style="background:Lavender;color:#000000">230  230  250</td>
</tr>
<tr>
<td style="background:Thistle;color:#000000">Thistle</td>
<td style="background:Thistle;color:#000000">216  191  216</td>
</tr>
<tr>
<td style="background:Plum;color:#000000">Plum</td>
<td style="background:Plum;color:#000000">221  160  221</td>
</tr>
<tr>
<td style="background:Violet;color:#000000">Violet</td>
<td style="background:Violet;color:#000000">238  130  238</td>
</tr>
<tr>
<td style="background:Orchid;color:#000000">Orchid</td>
<td style="background:Orchid;color:#000000">218  112  214</td>
</tr>
<tr>
<td style="background:Fuchsia;color:#ffffff">Fuchsia</td>
<td style="background:Fuchsia;color:#ffffff">255    0  255</td>
</tr>
<tr>
<td style="background:Magenta;color:#ffffff">Magenta</td>
<td style="background:Magenta;color:#ffffff">255    0  255</td>
</tr>
<tr>
<td style="background:MediumOrchid;color:#000000">MediumOrchid</td>
<td style="background:MediumOrchid;color:#000000">186   85  211</td>
</tr>
<tr>
<td style="background:MediumPurple;color:#000000">MediumPurple</td>
<td style="background:MediumPurple;color:#000000">147  112  219</td>
</tr>
<tr>
<td style="background:BlueViolet;color:#ffffff">BlueViolet</td>
<td style="background:BlueViolet;color:#ffffff">138   43  226</td>
</tr>
<tr>
<td style="background:DarkViolet;color:#ffffff">DarkViolet</td>
<td style="background:DarkViolet;color:#ffffff">148    0  211</td>
</tr>
<tr>
<td style="background:DarkOrchid;color:#ffffff">DarkOrchid</td>
<td style="background:DarkOrchid;color:#ffffff">153   50  204</td>
</tr>
<tr>
<td style="background:DarkMagenta;color:#ffffff">DarkMagenta</td>
<td style="background:DarkMagenta;color:#ffffff">139    0  139</td>
</tr>
<tr>
<td style="background:Purple;color:#ffffff">Purple</td>
<td style="background:Purple;color:#ffffff">128    0  128</td>
</tr>
<tr>
<td style="background:Indigo;color:#ffffff">Indigo</td>
<td style="background:Indigo;color:#ffffff"> 75    0  130</td>
</tr>
<tr>
<td style="background:DarkSlateBlue;color:#ffffff">DarkSlateBlue</td>
<td style="background:DarkSlateBlue;color:#ffffff"> 72   61  139</td>
</tr>
<tr>
<td style="background:SlateBlue;color:#ffffff">SlateBlue</td>
<td style="background:SlateBlue;color:#ffffff">106   90  205</td>
</tr>
<tr>
<td style="background:MediumSlateBlue;color:#ffffff">MediumSlateBlue</td>
<td style="background:MediumSlateBlue;color:#ffffff">123  104  238</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<th>HTML name</th>
<th>Decimal code<br>
  R    G    B</th>
</tr>
<tr>
<td colspan="2"><b>Green colors</b></td>
</tr>
<tr>
<td style="background:GreenYellow;color:#000000">GreenYellow</td>
<td style="background:GreenYellow;color:#000000">173  255   47</td>
</tr>
<tr>
<td style="background:Chartreuse;color:#000000">Chartreuse</td>
<td style="background:Chartreuse;color:#000000">127  255    0</td>
</tr>
<tr>
<td style="background:LawnGreen;color:#000000">LawnGreen</td>
<td style="background:LawnGreen;color:#000000">124  252    0</td>
</tr>
<tr>
<td style="background:Lime;color:#000000">Lime</td>
<td style="background:Lime;color:#000000">  0  255    0</td>
</tr>
<tr>
<td style="background:LimeGreen;color:#000000">LimeGreen</td>
<td style="background:LimeGreen;color:#000000"> 50  205   50</td>
</tr>
<tr>
<td style="background:PaleGreen;color:#000000">PaleGreen</td>
<td style="background:PaleGreen;color:#000000">152  251  152</td>
</tr>
<tr>
<td style="background:LightGreen;color:#000000">LightGreen</td>
<td style="background:LightGreen;color:#000000">144  238  144</td>
</tr>
<tr>
<td style="background:MediumSpringGreen;color:#000000">MediumSpringGreen</td>
<td style="background:MediumSpringGreen;color:#000000">  0  250  154</td>
</tr>
<tr>
<td style="background:SpringGreen;color:#000000">SpringGreen</td>
<td style="background:SpringGreen;color:#000000">  0  255  127</td>
</tr>
<tr>
<td style="background:MediumSeaGreen;color:#000000">MediumSeaGreen</td>
<td style="background:MediumSeaGreen;color:#000000"> 60  179  113</td>
</tr>
<tr>
<td style="background:SeaGreen;color:#ffffff">SeaGreen</td>
<td style="background:SeaGreen;color:#ffffff"> 46  139   87</td>
</tr>
<tr>
<td style="background:ForestGreen;color:#ffffff">ForestGreen</td>
<td style="background:ForestGreen;color:#ffffff"> 34  139   34</td>
</tr>
<tr>
<td style="background:Green;color:#ffffff">Green</td>
<td style="background:Green;color:#ffffff">  0  128    0</td>
</tr>
<tr>
<td style="background:DarkGreen;color:#ffffff">DarkGreen</td>
<td style="background:DarkGreen;color:#ffffff">  0  100    0</td>
</tr>
<tr>
<td style="background:YellowGreen;color:#000000">YellowGreen</td>
<td style="background:YellowGreen;color:#000000">154  205   50</td>
</tr>
<tr>
<td style="background:OliveDrab;color:#ffffff">OliveDrab</td>
<td style="background:OliveDrab;color:#ffffff">107  142   35</td>
</tr>
<tr>
<td style="background:Olive;color:#ffffff">Olive</td>
<td style="background:Olive;color:#ffffff">128  128    0</td>
</tr>
<tr>
<td style="background:DarkOliveGreen;color:#ffffff">DarkOliveGreen</td>
<td style="background:DarkOliveGreen;color:#ffffff"> 85  107   47</td>
</tr>
<tr>
<td style="background:MediumAquamarine;color:#000000">MediumAquamarine</td>
<td style="background:MediumAquamarine;color:#000000">102  205  170</td>
</tr>
<tr>
<td style="background:DarkSeaGreen;color:#000000">DarkSeaGreen</td>
<td style="background:DarkSeaGreen;color:#000000">143  188  143</td>
</tr>
<tr>
<td style="background:LightSeaGreen;color:#000000">LightSeaGreen</td>
<td style="background:LightSeaGreen;color:#000000"> 32  178  170</td>
</tr>
<tr>
<td style="background:DarkCyan;color:#ffffff">DarkCyan</td>
<td style="background:DarkCyan;color:#ffffff">  0  139  139</td>
</tr>
<tr>
<td style="background:Teal;color:#ffffff">Teal</td>
<td style="background:Teal;color:#ffffff">  0  128  128</td>
</tr>
<tr>
<td colspan="2"><b>Blue/Cyan colors</b></td>
</tr>
<tr>
<td style="background:Aqua;color:#000000">Aqua</td>
<td style="background:Aqua;color:#000000">  0  255  255</td>
</tr>
<tr>
<td style="background:Cyan;color:#000000">Cyan</td>
<td style="background:Cyan;color:#000000">  0  255  255</td>
</tr>
<tr>
<td style="background:LightCyan;color:#000000">LightCyan</td>
<td style="background:LightCyan;color:#000000">224  255  255</td>
</tr>
<tr>
<td style="background:PaleTurquoise;color:#000000">PaleTurquoise</td>
<td style="background:PaleTurquoise;color:#000000">175  238  238</td>
</tr>
<tr>
<td style="background:Aquamarine;color:#000000">Aquamarine</td>
<td style="background:Aquamarine;color:#000000">127  255  212</td>
</tr>
<tr>
<td style="background:Turquoise;color:#000000">Turquoise</td>
<td style="background:Turquoise;color:#000000"> 64  224  208</td>
</tr>
<tr>
<td style="background:MediumTurquoise;color:#000000">MediumTurquoise</td>
<td style="background:MediumTurquoise;color:#000000"> 72  209  204</td>
</tr>
<tr>
<td style="background:DarkTurquoise;color:#000000">DarkTurquoise</td>
<td style="background:DarkTurquoise;color:#000000">  0  206  209</td>
</tr>
<tr>
<td style="background:CadetBlue;color:#000000">CadetBlue</td>
<td style="background:CadetBlue;color:#000000"> 95  158  160</td>
</tr>
<tr>
<td style="background:SteelBlue;color:#ffffff">SteelBlue</td>
<td style="background:SteelBlue;color:#ffffff"> 70  130  180</td>
</tr>
<tr>
<td style="background:LightSteelBlue;color:#000000">LightSteelBlue</td>
<td style="background:LightSteelBlue;color:#000000">176  196  222</td>
</tr>
<tr>
<td style="background:PowderBlue;color:#000000">PowderBlue</td>
<td style="background:PowderBlue;color:#000000">176  224  230</td>
</tr>
<tr>
<td style="background:LightBlue;color:#000000">LightBlue</td>
<td style="background:LightBlue;color:#000000">173  216  230</td>
</tr>
<tr>
<td style="background:SkyBlue;color:#000000">SkyBlue</td>
<td style="background:SkyBlue;color:#000000">135  206  235</td>
</tr>
<tr>
<td style="background:LightSkyBlue;color:#000000">LightSkyBlue</td>
<td style="background:LightSkyBlue;color:#000000">135  206  250</td>
</tr>
<tr>
<td style="background:DeepSkyBlue;color:#000000">DeepSkyBlue</td>
<td style="background:DeepSkyBlue;color:#000000">  0  191  255</td>
</tr>
<tr>
<td style="background:DodgerBlue;color:#ffffff">DodgerBlue</td>
<td style="background:DodgerBlue;color:#ffffff"> 30  144  255</td>
</tr>
<tr>
<td style="background:CornflowerBlue;color:#000000">CornflowerBlue</td>
<td style="background:CornflowerBlue;color:#000000">100  149  237</td>
</tr>
<tr>
<td style="background:RoyalBlue;color:#ffffff">RoyalBlue</td>
<td style="background:RoyalBlue;color:#ffffff"> 65  105  225</td>
</tr>
<tr>
<td style="background:Blue;color:#ffffff">Blue</td>
<td style="background:Blue;color:#ffffff">  0    0  255</td>
</tr>
<tr>
<td style="background:MediumBlue;color:#ffffff">MediumBlue</td>
<td style="background:MediumBlue;color:#ffffff">  0    0  205</td>
</tr>
<tr>
<td style="background:DarkBlue;color:#ffffff">DarkBlue</td>
<td style="background:DarkBlue;color:#ffffff">  0    0  139</td>
</tr>
<tr>
<td style="background:Navy;color:#ffffff">Navy</td>
<td style="background:Navy;color:#ffffff">  0    0  128</td>
</tr>
<tr>
<td style="background:MidnightBlue;color:#ffffff">MidnightBlue</td>
<td style="background:MidnightBlue;color:#ffffff"> 25   25  112</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<th>HTML name</th>
<th>Decimal code<br>
  R    G    B</th>
</tr>
<tr>
<td colspan="2"><b>Brown colors</b></td>
</tr>
<tr>
<td style="background:Cornsilk;color:#000000">Cornsilk</td>
<td style="background:Cornsilk;color:#000000">255  248  220</td>
</tr>
<tr>
<td style="background:BlanchedAlmond;color:#000000">BlanchedAlmond</td>
<td style="background:BlanchedAlmond;color:#000000">255  235  205</td>
</tr>
<tr>
<td style="background:Bisque;color:#000000">Bisque</td>
<td style="background:Bisque;color:#000000">255  228  196</td>
</tr>
<tr>
<td style="background:NavajoWhite;color:#000000">NavajoWhite</td>
<td style="background:NavajoWhite;color:#000000">255  222  173</td>
</tr>
<tr>
<td style="background:Wheat;color:#000000">Wheat</td>
<td style="background:Wheat;color:#000000">245  222  179</td>
</tr>
<tr>
<td style="background:BurlyWood;color:#000000">BurlyWood</td>
<td style="background:BurlyWood;color:#000000">222  184  135</td>
</tr>
<tr>
<td style="background:Tan;color:#000000">Tan</td>
<td style="background:Tan;color:#000000">210  180  140</td>
</tr>
<tr>
<td style="background:RosyBrown;color:#000000">RosyBrown</td>
<td style="background:RosyBrown;color:#000000">188  143  143</td>
</tr>
<tr>
<td style="background:SandyBrown;color:#000000">SandyBrown</td>
<td style="background:SandyBrown;color:#000000">244  164   96</td>
</tr>
<tr>
<td style="background:Goldenrod;color:#000000">Goldenrod</td>
<td style="background:Goldenrod;color:#000000">218  165   32</td>
</tr>
<tr>
<td style="background:DarkGoldenrod;color:#000000">DarkGoldenrod</td>
<td style="background:DarkGoldenrod;color:#000000">184  134   11</td>
</tr>
<tr>
<td style="background:Peru;color:#000000">Peru</td>
<td style="background:Peru;color:#000000">205  133   63</td>
</tr>
<tr>
<td style="background:Chocolate;color:#000000">Chocolate</td>
<td style="background:Chocolate;color:#000000">210  105   30</td>
</tr>
<tr>
<td style="background:SaddleBrown;color:#ffffff">SaddleBrown</td>
<td style="background:SaddleBrown;color:#ffffff">139   69   19</td>
</tr>
<tr>
<td style="background:Sienna;color:#ffffff">Sienna</td>
<td style="background:Sienna;color:#ffffff">160   82   45</td>
</tr>
<tr>
<td style="background:Brown;color:#ffffff">Brown</td>
<td style="background:Brown;color:#ffffff">165   42   42</td>
</tr>
<tr>
<td style="background:Maroon;color:#ffffff">Maroon</td>
<td style="background:Maroon;color:#ffffff">128    0    0</td>
</tr>
<tr>
<td colspan="2"><b>White colors</b></td>
</tr>
<tr>
<td style="background:White;color:#000000">White</td>
<td style="background:White;color:#000000">255  255  255</td>
</tr>
<tr>
<td style="background:Snow;color:#000000">Snow</td>
<td style="background:Snow;color:#000000">255  250  250</td>
</tr>
<tr>
<td style="background:Honeydew;color:#000000">Honeydew</td>
<td style="background:Honeydew;color:#000000">240  255  240</td>
</tr>
<tr>
<td style="background:MintCream;color:#000000">MintCream</td>
<td style="background:MintCream;color:#000000">245  255  250</td>
</tr>
<tr>
<td style="background:Azure;color:#000000">Azure</td>
<td style="background:Azure;color:#000000">240  255  255</td>
</tr>
<tr>
<td style="background:AliceBlue;color:#000000">AliceBlue</td>
<td style="background:AliceBlue;color:#000000">240  248  255</td>
</tr>
<tr>
<td style="background:GhostWhite;color:#000000">GhostWhite</td>
<td style="background:GhostWhite;color:#000000">248  248  255</td>
</tr>
<tr>
<td style="background:WhiteSmoke;color:#000000">WhiteSmoke</td>
<td style="background:WhiteSmoke;color:#000000">245  245  245</td>
</tr>
<tr>
<td style="background:Seashell;color:#000000">Seashell</td>
<td style="background:Seashell;color:#000000">255  245  238</td>
</tr>
<tr>
<td style="background:Beige;color:#000000">Beige</td>
<td style="background:Beige;color:#000000">245  245  220</td>
</tr>
<tr>
<td style="background:OldLace;color:#000000">OldLace</td>
<td style="background:OldLace;color:#000000">253  245  230</td>
</tr>
<tr>
<td style="background:FloralWhite;color:#000000">FloralWhite</td>
<td style="background:FloralWhite;color:#000000">255  250  240</td>
</tr>
<tr>
<td style="background:Ivory;color:#000000">Ivory</td>
<td style="background:Ivory;color:#000000">255  255  240</td>
</tr>
<tr>
<td style="background:AntiqueWhite;color:#000000">AntiqueWhite</td>
<td style="background:AntiqueWhite;color:#000000">250  235  215</td>
</tr>
<tr>
<td style="background:Linen;color:#000000">Linen</td>
<td style="background:Linen;color:#000000">250  240  230</td>
</tr>
<tr>
<td style="background:LavenderBlush;color:#000000">LavenderBlush</td>
<td style="background:LavenderBlush;color:#000000">255  240  245</td>
</tr>
<tr>
<td style="background:MistyRose;color:#000000">MistyRose</td>
<td style="background:MistyRose;color:#000000">255  228  225</td>
</tr>
<tr>
<td colspan="2"><b>Gray colors</b></td>
</tr>
<tr>
<td style="background:Gainsboro;color:#000000">Gainsboro</td>
<td style="background:Gainsboro;color:#000000">220  220  220</td>
</tr>
<tr>
<td style="background:LightGrey;color:#000000">LightGrey</td>
<td style="background:LightGrey;color:#000000">211  211  211</td>
</tr>
<tr>
<td style="background:Silver;color:#000000">Silver</td>
<td style="background:Silver;color:#000000">192  192  192</td>
</tr>
<tr>
<td style="background:DarkGray;color:#000000">DarkGray</td>
<td style="background:DarkGray;color:#000000">169  169  169</td>
</tr>
<tr>
<td style="background:Gray;color:#000000">Gray</td>
<td style="background:Gray;color:#000000">128  128  128</td>
</tr>
<tr>
<td style="background:DimGray;color:#ffffff">DimGray</td>
<td style="background:DimGray;color:#ffffff">105  105  105</td>
</tr>
<tr>
<td style="background:LightSlateGray;color:#000000">LightSlateGray</td>
<td style="background:LightSlateGray;color:#000000">119  136  153</td>
</tr>
<tr>
<td style="background:SlateGray;color:#ffffff">SlateGray</td>
<td style="background:SlateGray;color:#ffffff">112  128  144</td>
</tr>
<tr>
<td style="background:DarkSlateGray;color:#ffffff">DarkSlateGray</td>
<td style="background:DarkSlateGray;color:#ffffff"> 47   79   79</td>
</tr>
<tr>
<td style="background:Black;color:#ffffff">Black</td>
<td style="background:Black;color:#ffffff">  0    0    0</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<table>
<tr>
<th colspan="3"><a id="VTKColorNames">VTK color Names</a></th>
</tr>
<tr>
<td>
<table>
<tr>
<th>HTML name</th>
<th>Decimal code<br>
  R    G    B</th>
</tr>
<tr>
<td colspan="2"><b>Whites</b></td>
</tr>
<tr>
<td style="background:#faebd7;color:#000000">antique_white</td>
<td style="background:#faebd7;color:#000000">250  235  215</td>
</tr>
<tr>
<td style="background:#f0ffff;color:#000000">azure</td>
<td style="background:#f0ffff;color:#000000">240  255  255</td>
</tr>
<tr>
<td style="background:#ffe4c4;color:#000000">bisque</td>
<td style="background:#ffe4c4;color:#000000">255  228  196</td>
</tr>
<tr>
<td style="background:#ffebcd;color:#000000">blanched_almond</td>
<td style="background:#ffebcd;color:#000000">255  235  205</td>
</tr>
<tr>
<td style="background:#fff8dc;color:#000000">cornsilk</td>
<td style="background:#fff8dc;color:#000000">255  248  220</td>
</tr>
<tr>
<td style="background:#fce6c9;color:#000000">eggshell</td>
<td style="background:#fce6c9;color:#000000">252  230  201</td>
</tr>
<tr>
<td style="background:#fffaf0;color:#000000">floral_white</td>
<td style="background:#fffaf0;color:#000000">255  250  240</td>
</tr>
<tr>
<td style="background:#dcdcdc;color:#000000">gainsboro</td>
<td style="background:#dcdcdc;color:#000000">220  220  220</td>
</tr>
<tr>
<td style="background:#f8f8ff;color:#000000">ghost_white</td>
<td style="background:#f8f8ff;color:#000000">248  248  255</td>
</tr>
<tr>
<td style="background:#f0fff0;color:#000000">honeydew</td>
<td style="background:#f0fff0;color:#000000">240  255  240</td>
</tr>
<tr>
<td style="background:#fffff0;color:#000000">ivory</td>
<td style="background:#fffff0;color:#000000">255  255  240</td>
</tr>
<tr>
<td style="background:#e6e6fa;color:#000000">lavender</td>
<td style="background:#e6e6fa;color:#000000">230  230  250</td>
</tr>
<tr>
<td style="background:#fff0f5;color:#000000">lavender_blush</td>
<td style="background:#fff0f5;color:#000000">255  240  245</td>
</tr>
<tr>
<td style="background:#fffacd;color:#000000">lemon_chiffon</td>
<td style="background:#fffacd;color:#000000">255  250  205</td>
</tr>
<tr>
<td style="background:#faf0e6;color:#000000">linen</td>
<td style="background:#faf0e6;color:#000000">250  240  230</td>
</tr>
<tr>
<td style="background:#f5fffa;color:#000000">mint_cream</td>
<td style="background:#f5fffa;color:#000000">245  255  250</td>
</tr>
<tr>
<td style="background:#ffe4e1;color:#000000">misty_rose</td>
<td style="background:#ffe4e1;color:#000000">255  228  225</td>
</tr>
<tr>
<td style="background:#ffe4b5;color:#000000">moccasin</td>
<td style="background:#ffe4b5;color:#000000">255  228  181</td>
</tr>
<tr>
<td style="background:#ffdead;color:#000000">navajo_white</td>
<td style="background:#ffdead;color:#000000">255  222  173</td>
</tr>
<tr>
<td style="background:#fdf5e6;color:#000000">old_lace</td>
<td style="background:#fdf5e6;color:#000000">253  245  230</td>
</tr>
<tr>
<td style="background:#ffefd5;color:#000000">papaya_whip</td>
<td style="background:#ffefd5;color:#000000">255  239  213</td>
</tr>
<tr>
<td style="background:#ffdab9;color:#000000">peach_puff</td>
<td style="background:#ffdab9;color:#000000">255  218  185</td>
</tr>
<tr>
<td style="background:#fff5ee;color:#000000">seashell</td>
<td style="background:#fff5ee;color:#000000">255  245  238</td>
</tr>
<tr>
<td style="background:#fffafa;color:#000000">snow</td>
<td style="background:#fffafa;color:#000000">255  250  250</td>
</tr>
<tr>
<td style="background:#d8bfd8;color:#000000">thistle</td>
<td style="background:#d8bfd8;color:#000000">216  191  216</td>
</tr>
<tr>
<td style="background:#fcfff0;color:#000000">titanium_white</td>
<td style="background:#fcfff0;color:#000000">252  255  240</td>
</tr>
<tr>
<td style="background:#f5deb3;color:#000000">wheat</td>
<td style="background:#f5deb3;color:#000000">245  222  179</td>
</tr>
<tr>
<td style="background:#ffffff;color:#000000">white</td>
<td style="background:#ffffff;color:#000000">255  255  255</td>
</tr>
<tr>
<td style="background:#f5f5f5;color:#000000">white_smoke</td>
<td style="background:#f5f5f5;color:#000000">245  245  245</td>
</tr>
<tr>
<td style="background:#fcf7ff;color:#000000">zinc_white</td>
<td style="background:#fcf7ff;color:#000000">252  247  255</td>
</tr>
<tr>
<td colspan="2"><b>Greys</b></td>
</tr>
<tr>
<td style="background:#808a87;color:#000000">cold_grey</td>
<td style="background:#808a87;color:#000000">128  138  135</td>
</tr>
<tr>
<td style="background:#696969;color:#ffffff">dim_grey</td>
<td style="background:#696969;color:#ffffff">105  105  105</td>
</tr>
<tr>
<td style="background:#c0c0c0;color:#000000">grey</td>
<td style="background:#c0c0c0;color:#000000">192  192  192</td>
</tr>
<tr>
<td style="background:#d3d3d3;color:#000000">light_grey</td>
<td style="background:#d3d3d3;color:#000000">211  211  211</td>
</tr>
<tr>
<td style="background:#708090;color:#ffffff">slate_grey</td>
<td style="background:#708090;color:#ffffff">112  128  144</td>
</tr>
<tr>
<td style="background:#2f4f4f;color:#ffffff">slate_grey_dark</td>
<td style="background:#2f4f4f;color:#ffffff"> 47   79   79</td>
</tr>
<tr>
<td style="background:#778899;color:#000000">slate_grey_light</td>
<td style="background:#778899;color:#000000">119  136  153</td>
</tr>
<tr>
<td style="background:#808069;color:#ffffff">warm_grey</td>
<td style="background:#808069;color:#ffffff">128  128  105</td>
</tr>
<tr>
<td colspan="2"><b>Blacks</b></td>
</tr>
<tr>
<td style="background:#000000;color:#ffffff">black</td>
<td style="background:#000000;color:#ffffff">  0    0    0</td>
</tr>
<tr>
<td style="background:#292421;color:#ffffff">ivory_black</td>
<td style="background:#292421;color:#ffffff"> 41   36   33</td>
</tr>
<tr>
<td style="background:#2e473b;color:#ffffff">lamp_black</td>
<td style="background:#2e473b;color:#ffffff"> 46   71   59</td>
</tr>
<tr>
<td colspan="2"><b>Reds</b></td>
</tr>
<tr>
<td style="background:#e32636;color:#ffffff">alizarin_crimson</td>
<td style="background:#e32636;color:#ffffff">227   38   54</td>
</tr>
<tr>
<td style="background:#9c661f;color:#ffffff">brick</td>
<td style="background:#9c661f;color:#ffffff">156  102   31</td>
</tr>
<tr>
<td style="background:#e3170d;color:#ffffff">cadmium_red_deep</td>
<td style="background:#e3170d;color:#ffffff">227   23   13</td>
</tr>
<tr>
<td style="background:#ff7f50;color:#000000">coral</td>
<td style="background:#ff7f50;color:#000000">255  127   80</td>
</tr>
<tr>
<td style="background:#f08080;color:#000000">coral_light</td>
<td style="background:#f08080;color:#000000">240  128  128</td>
</tr>
<tr>
<td style="background:#ff1493;color:#ffffff">deep_pink</td>
<td style="background:#ff1493;color:#ffffff">255   20  147</td>
</tr>
<tr>
<td style="background:#d43d1a;color:#ffffff">english_red</td>
<td style="background:#d43d1a;color:#ffffff">212   61   26</td>
</tr>
<tr>
<td style="background:#b22222;color:#ffffff">firebrick</td>
<td style="background:#b22222;color:#ffffff">178   34   34</td>
</tr>
<tr>
<td style="background:#e31230;color:#ffffff">geranium_lake</td>
<td style="background:#e31230;color:#ffffff">227   18   48</td>
</tr>
<tr>
<td style="background:#ff69b4;color:#000000">hot_pink</td>
<td style="background:#ff69b4;color:#000000">255  105  180</td>
</tr>
<tr>
<td style="background:#b0171f;color:#ffffff">indian_red</td>
<td style="background:#b0171f;color:#ffffff">176   23   31</td>
</tr>
<tr>
<td style="background:#ffa07a;color:#000000">light_salmon</td>
<td style="background:#ffa07a;color:#000000">255  160  122</td>
</tr>
<tr>
<td style="background:#e32e30;color:#ffffff">madder_lake_deep</td>
<td style="background:#e32e30;color:#ffffff">227   46   48</td>
</tr>
<tr>
<td style="background:#800000;color:#ffffff">maroon</td>
<td style="background:#800000;color:#ffffff">128    0    0</td>
</tr>
<tr>
<td style="background:#ffc0cb;color:#000000">pink</td>
<td style="background:#ffc0cb;color:#000000">255  192  203</td>
</tr>
<tr>
<td style="background:#ffb6c1;color:#000000">pink_light</td>
<td style="background:#ffb6c1;color:#000000">255  182  193</td>
</tr>
<tr>
<td style="background:#872657;color:#ffffff">raspberry</td>
<td style="background:#872657;color:#ffffff">135   38   87</td>
</tr>
<tr>
<td style="background:#ff0000;color:#ffffff">red</td>
<td style="background:#ff0000;color:#ffffff">255    0    0</td>
</tr>
<tr>
<td style="background:#e33638;color:#ffffff">rose_madder</td>
<td style="background:#e33638;color:#ffffff">227   54   56</td>
</tr>
<tr>
<td style="background:#fa8072;color:#000000">salmon</td>
<td style="background:#fa8072;color:#000000">250  128  114</td>
</tr>
<tr>
<td style="background:#ff6347;color:#000000">tomato</td>
<td style="background:#ff6347;color:#000000">255   99   71</td>
</tr>
<tr>
<td style="background:#d41a1f;color:#ffffff">venetian_red</td>
<td style="background:#d41a1f;color:#ffffff">212   26   31</td>