ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
rgb.m
Go to the documentation of this file.
1%> \brief
2%> Return the RGB triplet corresponding to the input color name ``cname``.<br>
3%>
4%> \details
5%> The RGB names and triplets are derived from http://en.wikipedia.org/wiki/List_of_colors colormap matrix.<br>
6%>
7%> \param[in] cname : The input scalar MATLAB string or char vector
8%> containing the color name whose RGB triplet is to be returned.<br>
9%> If ``cname`` is missing or set to an empty object then the an object
10%> of class ``containers.Map()`` will be returned containing all color
11%> names in the database and the corresponding RGB triplets.<br>
12%> All input values are case-insensitive.<br>
13%> (**optional**, default = ``[]``)
14%>
15%> \return
16%> ``triplet`` : The output vector of length ``3`` of MATLAB doubles
17%> containing the RGB triplet corresponding to the input color name.<br>
18%> If ``cname`` is missing or set to an empty object then the an object
19%> of class ``containers.Map()`` will be returned containing all color
20%> names in the database and the corresponding RGB triplets.<br>
21%>
22%>
23%> \interface{rgb}
24%> \code{.m}
25%>
26%> triplet = pm.vis.color.rgb() % retrieve all possible input color names and the corresponding RGBs.
27%> triplet = pm.vis.color.rgb(cname)
28%>
29%> \endcode
30%>
31%> \example{rgb}
32%> \include{lineno} example/vis/color/rgb/main.m
33%> \output{rgb}
34%> \include{lineno} example/vis/color/rgb/main.out.m
35%>
36%> \final{rgb}
37%>
38%> \author
39%> \JoshuaOsborne, May 21 2024, 7:48 AM, University of Texas at Arlington<br>
40%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
41%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
42function triplet = rgb(cname)
43 persistent rgbmap;
44 if isempty(rgbmap)
45 rgbmap = containers.Map();
46 rgbmap('air force blue') = [0.360000 0.540000 0.660000];
47 rgbmap('alice blue') = [0.940000 0.970000 1.000000];
48 rgbmap('alizarin crimson') = [0.890000 0.150000 0.210000];
49 rgbmap('almond') = [0.940000 0.870000 0.800000];
50 rgbmap('amaranth') = [0.900000 0.170000 0.310000];
51 rgbmap('amber') = [1.000000 0.750000 0.000000];
52 rgbmap('amber (sae/ece)') = [1.000000 0.490000 0.000000];
53 rgbmap('american rose') = [1.000000 0.010000 0.240000];
54 rgbmap('amethyst') = [0.600000 0.400000 0.800000];
55 rgbmap('android green') = [0.640000 0.780000 0.220000];
56 rgbmap('anti-flash white') = [0.950000 0.950000 0.960000];
57 rgbmap('antique brass') = [0.800000 0.580000 0.460000];
58 rgbmap('antique fuchsia') = [0.570000 0.360000 0.510000];
59 rgbmap('antique white') = [0.980000 0.920000 0.840000];
60 rgbmap('ao (english)') = [0.000000 0.500000 0.000000];
61 rgbmap('apple green') = [0.550000 0.710000 0.000000];
62 rgbmap('apricot') = [0.980000 0.810000 0.690000];
63 rgbmap('aqua') = [0.000000 1.000000 1.000000];
64 rgbmap('aquamarine') = [0.500000 1.000000 0.830000];
65 rgbmap('army green') = [0.290000 0.330000 0.130000];
66 rgbmap('arsenic') = [0.230000 0.270000 0.290000];
67 rgbmap('arylide yellow') = [0.910000 0.840000 0.420000];
68 rgbmap('ash grey') = [0.700000 0.750000 0.710000];
69 rgbmap('asparagus') = [0.530000 0.660000 0.420000];
70 rgbmap('atomic tangerine') = [1.000000 0.600000 0.400000];
71 rgbmap('auburn') = [0.650000 0.160000 0.160000];
72 rgbmap('aureolin') = [0.990000 0.930000 0.000000];
73 rgbmap('aurometalsaurus') = [0.430000 0.500000 0.500000];
74 rgbmap('awesome') = [1.000000 0.130000 0.320000];
75 rgbmap('azure') = [0.000000 0.500000 1.000000];
76 rgbmap('azure mist/web') = [0.940000 1.000000 1.000000];
77 rgbmap('baby blue') = [0.470000 0.810000 0.940000];
78 rgbmap('baby blue eyes') = [0.630000 0.790000 0.950000];
79 rgbmap('baby pink') = [0.960000 0.760000 0.760000];
80 rgbmap('ball blue') = [0.130000 0.670000 0.800000];
81 rgbmap('banana mania') = [0.980000 0.910000 0.710000];
82 rgbmap('banana yellow') = [1.000000 0.880000 0.210000];
83 rgbmap('battleship grey') = [0.520000 0.520000 0.510000];
84 rgbmap('bazaar') = [0.600000 0.470000 0.480000];
85 rgbmap('bear') = [0.070000 0.100000 0.170000];
86 rgbmap('beau blue') = [0.740000 0.830000 0.900000];
87 rgbmap('beaver') = [0.620000 0.510000 0.440000];
88 rgbmap('beige') = [0.960000 0.960000 0.860000];
89 rgbmap('bisque') = [1.000000 0.890000 0.770000];
90 rgbmap('bistre') = [0.240000 0.170000 0.120000];
91 rgbmap('bittersweet') = [1.000000 0.440000 0.370000];
92 rgbmap('black') = [0.000000 0.000000 0.000000];
93 rgbmap('blanched almond') = [1.000000 0.920000 0.800000];
94 rgbmap('bleu de france') = [0.190000 0.550000 0.910000];
95 rgbmap('blizzard blue') = [0.670000 0.900000 0.930000];
96 rgbmap('blond') = [0.980000 0.940000 0.750000];
97 rgbmap('blue') = [0.000000 0.000000 1.000000];
98 rgbmap('blue (munsell)') = [0.000000 0.500000 0.690000];
99 rgbmap('blue (ncs)') = [0.000000 0.530000 0.740000];
100 rgbmap('blue (pigment)') = [0.200000 0.200000 0.600000];
101 rgbmap('blue (ryb)') = [0.010000 0.280000 1.000000];
102 rgbmap('blue bell') = [0.640000 0.640000 0.820000];
103 rgbmap('blue gray') = [0.400000 0.600000 0.800000];
104 rgbmap('blue-green') = [0.050000 0.600000 0.730000];
105 rgbmap('blue-violet') = [0.540000 0.170000 0.890000];
106 rgbmap('blush') = [0.870000 0.360000 0.510000];
107 rgbmap('bole') = [0.470000 0.270000 0.230000];
108 rgbmap('bondi blue') = [0.000000 0.580000 0.710000];
109 rgbmap('boston university red') = [0.800000 0.000000 0.000000];
110 rgbmap('boysenberry') = [0.530000 0.200000 0.380000];
111 rgbmap('brandeis blue') = [0.000000 0.440000 1.000000];
112 rgbmap('brass') = [0.710000 0.650000 0.260000];
113 rgbmap('brick red') = [0.800000 0.250000 0.330000];
114 rgbmap('bright cerulean') = [0.110000 0.670000 0.840000];
115 rgbmap('bright green') = [0.400000 1.000000 0.000000];
116 rgbmap('bright lavender') = [0.750000 0.580000 0.890000];
117 rgbmap('bright maroon') = [0.760000 0.130000 0.280000];
118 rgbmap('bright pink') = [1.000000 0.000000 0.500000];
119 rgbmap('bright turquoise') = [0.030000 0.910000 0.870000];
120 rgbmap('bright ube') = [0.820000 0.620000 0.910000];
121 rgbmap('brilliant lavender') = [0.960000 0.730000 1.000000];
122 rgbmap('brilliant rose') = [1.000000 0.330000 0.640000];
123 rgbmap('brink pink') = [0.980000 0.380000 0.500000];
124 rgbmap('british racing green') = [0.000000 0.260000 0.150000];
125 rgbmap('bronze') = [0.800000 0.500000 0.200000];
126 rgbmap('brown (traditional)') = [0.590000 0.290000 0.000000];
127 rgbmap('brown (web)') = [0.650000 0.160000 0.160000];
128 rgbmap('bubble gum') = [0.990000 0.760000 0.800000];
129 rgbmap('bubbles') = [0.910000 1.000000 1.000000];
130 rgbmap('buff') = [0.940000 0.860000 0.510000];
131 rgbmap('bulgarian rose') = [0.280000 0.020000 0.030000];
132 rgbmap('burgundy') = [0.500000 0.000000 0.130000];
133 rgbmap('burlywood') = [0.870000 0.720000 0.530000];
134 rgbmap('burnt orange') = [0.800000 0.330000 0.000000];
135 rgbmap('burnt sienna') = [0.910000 0.450000 0.320000];
136 rgbmap('burnt umber') = [0.540000 0.200000 0.140000];
137 rgbmap('byzantine') = [0.740000 0.200000 0.640000];
138 rgbmap('byzantium') = [0.440000 0.160000 0.390000];
139 rgbmap('cadet') = [0.330000 0.410000 0.470000];
140 rgbmap('cadet blue') = [0.370000 0.620000 0.630000];
141 rgbmap('cadet grey') = [0.570000 0.640000 0.690000];
142 rgbmap('cadmium green') = [0.000000 0.420000 0.240000];
143 rgbmap('cadmium orange') = [0.930000 0.530000 0.180000];
144 rgbmap('cadmium red') = [0.890000 0.000000 0.130000];
145 rgbmap('cadmium yellow') = [1.000000 0.960000 0.000000];
146 rgbmap('caf? au lait') = [0.650000 0.480000 0.360000];
147 rgbmap('caf? noir') = [0.290000 0.210000 0.130000];
148 rgbmap('cal poly pomona green') = [0.120000 0.300000 0.170000];
149 rgbmap('cambridge blue') = [0.640000 0.760000 0.680000];
150 rgbmap('camel') = [0.760000 0.600000 0.420000];
151 rgbmap('camouflage green') = [0.470000 0.530000 0.420000];
152 rgbmap('canary yellow') = [1.000000 0.940000 0.000000];
153 rgbmap('candy apple red') = [1.000000 0.030000 0.000000];
154 rgbmap('candy pink') = [0.890000 0.440000 0.480000];
155 rgbmap('capri') = [0.000000 0.750000 1.000000];
156 rgbmap('caput mortuum') = [0.350000 0.150000 0.130000];
157 rgbmap('cardinal') = [0.770000 0.120000 0.230000];
158 rgbmap('caribbean green') = [0.000000 0.800000 0.600000];
159 rgbmap('carmine') = [0.590000 0.000000 0.090000];
160 rgbmap('carmine pink') = [0.920000 0.300000 0.260000];
161 rgbmap('carmine red') = [1.000000 0.000000 0.220000];
162 rgbmap('carnation pink') = [1.000000 0.650000 0.790000];
163 rgbmap('carnelian') = [0.700000 0.110000 0.110000];
164 rgbmap('carolina blue') = [0.600000 0.730000 0.890000];
165 rgbmap('carrot orange') = [0.930000 0.570000 0.130000];
166 rgbmap('ceil') = [0.570000 0.630000 0.810000];
167 rgbmap('celadon') = [0.670000 0.880000 0.690000];
168 rgbmap('celeste (colour)') = [0.700000 1.000000 1.000000];
169 rgbmap('celestial blue') = [0.290000 0.590000 0.820000];
170 rgbmap('cerise') = [0.870000 0.190000 0.390000];
171 rgbmap('cerise pink') = [0.930000 0.230000 0.510000];
172 rgbmap('cerulean') = [0.000000 0.480000 0.650000];
173 rgbmap('cerulean blue') = [0.160000 0.320000 0.750000];
174 rgbmap('cg blue') = [0.000000 0.480000 0.650000];
175 rgbmap('cg red') = [0.880000 0.240000 0.190000];
176 rgbmap('chamoisee') = [0.630000 0.470000 0.350000];
177 rgbmap('champagne') = [0.970000 0.910000 0.810000];
178 rgbmap('charcoal') = [0.210000 0.270000 0.310000];
179 rgbmap('chartreuse (traditional)') = [0.870000 1.000000 0.000000];
180 rgbmap('chartreuse (web)') = [0.500000 1.000000 0.000000];
181 rgbmap('cherry blossom pink') = [1.000000 0.720000 0.770000];
182 rgbmap('chestnut') = [0.800000 0.360000 0.360000];
183 rgbmap('chocolate (traditional)') = [0.480000 0.250000 0.000000];
184 rgbmap('chocolate (web)') = [0.820000 0.410000 0.120000];
185 rgbmap('chrome yellow') = [1.000000 0.650000 0.000000];
186 rgbmap('cinereous') = [0.600000 0.510000 0.480000];
187 rgbmap('cinnabar') = [0.890000 0.260000 0.200000];
188 rgbmap('cinnamon') = [0.820000 0.410000 0.120000];
189 rgbmap('citrine') = [0.890000 0.820000 0.040000];
190 rgbmap('classic rose') = [0.980000 0.800000 0.910000];
191 rgbmap('cobalt') = [0.000000 0.280000 0.670000];
192 rgbmap('cocoa brown') = [0.820000 0.410000 0.120000];
193 rgbmap('coffee') = [0.440000 0.310000 0.220000];
194 rgbmap('columbia blue') = [0.610000 0.870000 1.000000];
195 rgbmap('cool black') = [0.000000 0.180000 0.390000];
196 rgbmap('cool grey') = [0.550000 0.570000 0.670000];
197 rgbmap('copper') = [0.720000 0.450000 0.200000];
198 rgbmap('copper rose') = [0.600000 0.400000 0.400000];
199 rgbmap('coquelicot') = [1.000000 0.220000 0.000000];
200 rgbmap('coral') = [1.000000 0.500000 0.310000];
201 rgbmap('coral pink') = [0.970000 0.510000 0.470000];
202 rgbmap('coral red') = [1.000000 0.250000 0.250000];
203 rgbmap('cordovan') = [0.540000 0.250000 0.270000];
204 rgbmap('corn') = [0.980000 0.930000 0.360000];
205 rgbmap('cornell red') = [0.700000 0.110000 0.110000];
206 rgbmap('cornflower blue') = [0.390000 0.580000 0.930000];
207 rgbmap('cornsilk') = [1.000000 0.970000 0.860000];
208 rgbmap('cosmic latte') = [1.000000 0.970000 0.910000];
209 rgbmap('cotton candy') = [1.000000 0.740000 0.850000];
210 rgbmap('cream') = [1.000000 0.990000 0.820000];
211 rgbmap('crimson') = [0.860000 0.080000 0.240000];
212 rgbmap('crimson glory') = [0.750000 0.000000 0.200000];
213 rgbmap('cyan') = [0.000000 1.000000 1.000000];
214 rgbmap('cyan (process)') = [0.000000 0.720000 0.920000];
215 rgbmap('daffodil') = [1.000000 1.000000 0.190000];
216 rgbmap('dandelion') = [0.940000 0.880000 0.190000];
217 rgbmap('dark blue') = [0.000000 0.000000 0.550000];
218 rgbmap('dark brown') = [0.400000 0.260000 0.130000];
219 rgbmap('dark byzantium') = [0.360000 0.220000 0.330000];
220 rgbmap('dark candy apple red') = [0.640000 0.000000 0.000000];
221 rgbmap('dark cerulean') = [0.030000 0.270000 0.490000];
222 rgbmap('dark champagne') = [0.760000 0.700000 0.500000];
223 rgbmap('dark chestnut') = [0.600000 0.410000 0.380000];
224 rgbmap('dark coral') = [0.800000 0.360000 0.270000];
225 rgbmap('dark cyan') = [0.000000 0.550000 0.550000];
226 rgbmap('dark electric blue') = [0.330000 0.410000 0.470000];
227 rgbmap('dark goldenrod') = [0.720000 0.530000 0.040000];
228 rgbmap('dark gray') = [0.660000 0.660000 0.660000];
229 rgbmap('dark green') = [0.000000 0.200000 0.130000];
230 rgbmap('dark jungle green') = [0.100000 0.140000 0.130000];
231 rgbmap('dark khaki') = [0.740000 0.720000 0.420000];
232 rgbmap('dark lava') = [0.280000 0.240000 0.200000];
233 rgbmap('dark lavender') = [0.450000 0.310000 0.590000];
234 rgbmap('dark magenta') = [0.550000 0.000000 0.550000];
235 rgbmap('dark midnight blue') = [0.000000 0.200000 0.400000];
236 rgbmap('dark olive green') = [0.330000 0.420000 0.180000];
237 rgbmap('dark orange') = [1.000000 0.550000 0.000000];
238 rgbmap('dark orchid') = [0.600000 0.200000 0.800000];
239 rgbmap('dark pastel blue') = [0.470000 0.620000 0.800000];
240 rgbmap('dark pastel green') = [0.010000 0.750000 0.240000];
241 rgbmap('dark pastel purple') = [0.590000 0.440000 0.840000];
242 rgbmap('dark pastel red') = [0.760000 0.230000 0.130000];
243 rgbmap('dark pink') = [0.910000 0.330000 0.500000];
244 rgbmap('dark powder blue') = [0.000000 0.200000 0.600000];
245 rgbmap('dark raspberry') = [0.530000 0.150000 0.340000];
246 rgbmap('dark red') = [0.550000 0.000000 0.000000];
247 rgbmap('dark salmon') = [0.910000 0.590000 0.480000];
248 rgbmap('dark scarlet') = [0.340000 0.010000 0.100000];
249 rgbmap('dark sea green') = [0.560000 0.740000 0.560000];
250 rgbmap('dark sienna') = [0.240000 0.080000 0.080000];
251 rgbmap('dark slate blue') = [0.280000 0.240000 0.550000];
252 rgbmap('dark slate gray') = [0.180000 0.310000 0.310000];
253 rgbmap('dark spring green') = [0.090000 0.450000 0.270000];
254 rgbmap('dark tan') = [0.570000 0.510000 0.320000];
255 rgbmap('dark tangerine') = [1.000000 0.660000 0.070000];
256 rgbmap('dark taupe') = [0.280000 0.240000 0.200000];
257 rgbmap('dark terra cotta') = [0.800000 0.310000 0.360000];
258 rgbmap('dark turquoise') = [0.000000 0.810000 0.820000];
259 rgbmap('dark violet') = [0.580000 0.000000 0.830000];
260 rgbmap('dartmouth green') = [0.050000 0.500000 0.060000];
261 rgbmap('davys grey') = [0.330000 0.330000 0.330000];
262 rgbmap('debian red') = [0.840000 0.040000 0.330000];
263 rgbmap('deep carmine') = [0.660000 0.130000 0.240000];
264 rgbmap('deep carmine pink') = [0.940000 0.190000 0.220000];
265 rgbmap('deep carrot orange') = [0.910000 0.410000 0.170000];
266 rgbmap('deep cerise') = [0.850000 0.200000 0.530000];
267 rgbmap('deep champagne') = [0.980000 0.840000 0.650000];
268 rgbmap('deep chestnut') = [0.730000 0.310000 0.280000];
269 rgbmap('deep coffee') = [0.440000 0.260000 0.250000];
270 rgbmap('deep fuchsia') = [0.760000 0.330000 0.760000];
271 rgbmap('deep jungle green') = [0.000000 0.290000 0.290000];
272 rgbmap('deep lilac') = [0.600000 0.330000 0.730000];
273 rgbmap('deep magenta') = [0.800000 0.000000 0.800000];
274 rgbmap('deep peach') = [1.000000 0.800000 0.640000];
275 rgbmap('deep pink') = [1.000000 0.080000 0.580000];
276 rgbmap('deep saffron') = [1.000000 0.600000 0.200000];
277 rgbmap('deep sky blue') = [0.000000 0.750000 1.000000];
278 rgbmap('denim') = [0.080000 0.380000 0.740000];
279 rgbmap('desert') = [0.760000 0.600000 0.420000];
280 rgbmap('desert sand') = [0.930000 0.790000 0.690000];
281 rgbmap('dim gray') = [0.410000 0.410000 0.410000];
282 rgbmap('dodger blue') = [0.120000 0.560000 1.000000];
283 rgbmap('dogwood rose') = [0.840000 0.090000 0.410000];
284 rgbmap('dollar bill') = [0.520000 0.730000 0.400000];
285 rgbmap('dolphin') = [0.390000 0.380000 0.470000];
286 rgbmap('drab') = [0.590000 0.440000 0.090000];
287 rgbmap('duke blue') = [0.000000 0.000000 0.610000];
288 rgbmap('earth yellow') = [0.880000 0.660000 0.370000];
289 rgbmap('ecru') = [0.760000 0.700000 0.500000];
290 rgbmap('eggplant') = [0.380000 0.250000 0.320000];
291 rgbmap('eggshell') = [0.940000 0.920000 0.840000];
292 rgbmap('egyptian blue') = [0.060000 0.200000 0.650000];
293 rgbmap('electric blue') = [0.490000 0.980000 1.000000];
294 rgbmap('electric crimson') = [1.000000 0.000000 0.250000];
295 rgbmap('electric cyan') = [0.000000 1.000000 1.000000];
296 rgbmap('electric green') = [0.000000 1.000000 0.000000];
297 rgbmap('electric indigo') = [0.440000 0.000000 1.000000];
298 rgbmap('electric lavender') = [0.960000 0.730000 1.000000];
299 rgbmap('electric lime') = [0.800000 1.000000 0.000000];
300 rgbmap('electric purple') = [0.750000 0.000000 1.000000];
301 rgbmap('electric ultramarine') = [0.250000 0.000000 1.000000];
302 rgbmap('electric violet') = [0.560000 0.000000 1.000000];
303 rgbmap('electric yellow') = [1.000000 1.000000 0.000000];
304 rgbmap('emerald') = [0.310000 0.780000 0.470000];
305 rgbmap('eton blue') = [0.590000 0.780000 0.640000];
306 rgbmap('fallow') = [0.760000 0.600000 0.420000];
307 rgbmap('falu red') = [0.500000 0.090000 0.090000];
308 rgbmap('fandango') = [0.710000 0.200000 0.540000];
309 rgbmap('fashion fuchsia') = [0.960000 0.000000 0.630000];
310 rgbmap('fawn') = [0.900000 0.670000 0.440000];
311 rgbmap('feldgrau') = [0.300000 0.360000 0.330000];
312 rgbmap('fern green') = [0.310000 0.470000 0.260000];
313 rgbmap('ferrari red') = [1.000000 0.110000 0.000000];
314 rgbmap('field drab') = [0.420000 0.330000 0.120000];
315 rgbmap('firebrick') = [0.700000 0.130000 0.130000];
316 rgbmap('fire engine red') = [0.810000 0.090000 0.130000];
317 rgbmap('flame') = [0.890000 0.350000 0.130000];
318 rgbmap('flamingo pink') = [0.990000 0.560000 0.670000];
319 rgbmap('flavescent') = [0.970000 0.910000 0.560000];
320 rgbmap('flax') = [0.930000 0.860000 0.510000];
321 rgbmap('floral white') = [1.000000 0.980000 0.940000];
322 rgbmap('fluorescent orange') = [1.000000 0.750000 0.000000];
323 rgbmap('fluorescent pink') = [1.000000 0.080000 0.580000];
324 rgbmap('fluorescent yellow') = [0.800000 1.000000 0.000000];
325 rgbmap('folly') = [1.000000 0.000000 0.310000];
326 rgbmap('forest green (traditional)') = [0.000000 0.270000 0.130000];
327 rgbmap('forest green (web)') = [0.130000 0.550000 0.130000];
328 rgbmap('french beige') = [0.650000 0.480000 0.360000];
329 rgbmap('french blue') = [0.000000 0.450000 0.730000];
330 rgbmap('french lilac') = [0.530000 0.380000 0.560000];
331 rgbmap('french rose') = [0.960000 0.290000 0.540000];
332 rgbmap('fuchsia') = [1.000000 0.000000 1.000000];
333 rgbmap('fuchsia pink') = [1.000000 0.470000 1.000000];
334 rgbmap('fulvous') = [0.860000 0.520000 0.000000];
335 rgbmap('fuzzy wuzzy') = [0.800000 0.400000 0.400000];
336 rgbmap('gainsboro') = [0.860000 0.860000 0.860000];
337 rgbmap('gamboge') = [0.890000 0.610000 0.060000];
338 rgbmap('ghost white') = [0.970000 0.970000 1.000000];
339 rgbmap('ginger') = [0.690000 0.400000 0.000000];
340 rgbmap('glaucous') = [0.380000 0.510000 0.710000];
341 rgbmap('glitter') = [0.900000 0.910000 0.980000];
342 rgbmap('gold (metallic)') = [0.830000 0.690000 0.220000];
343 rgbmap('gold (web) (golden)') = [1.000000 0.840000 0.000000];
344 rgbmap('golden brown') = [0.600000 0.400000 0.080000];
345 rgbmap('golden poppy') = [0.990000 0.760000 0.000000];
346 rgbmap('golden yellow') = [1.000000 0.870000 0.000000];
347 rgbmap('goldenrod') = [0.850000 0.650000 0.130000];
348 rgbmap('granny smith apple') = [0.660000 0.890000 0.630000];
349 rgbmap('gray') = [0.500000 0.500000 0.500000];
350 rgbmap('gray (html/css gray)') = [0.500000 0.500000 0.500000];
351 rgbmap('gray (x11 gray)') = [0.750000 0.750000 0.750000];
352 rgbmap('gray-asparagus') = [0.270000 0.350000 0.270000];
353 rgbmap('green (color wheel) (x11 green)') = [0.000000 1.000000 0.000000];
354 rgbmap('green (html/css green)') = [0.000000 0.500000 0.000000];
355 rgbmap('green (munsell)') = [0.000000 0.660000 0.470000];
356 rgbmap('green (ncs)') = [0.000000 0.620000 0.420000];
357 rgbmap('green (pigment)') = [0.000000 0.650000 0.310000];
358 rgbmap('green (ryb)') = [0.400000 0.690000 0.200000];
359 rgbmap('green-yellow') = [0.680000 1.000000 0.180000];
360 rgbmap('grullo') = [0.660000 0.600000 0.530000];
361 rgbmap('guppie green') = [0.000000 1.000000 0.500000];
362 rgbmap('halaya ube') = [0.400000 0.220000 0.330000];
363 rgbmap('han blue') = [0.270000 0.420000 0.810000];
364 rgbmap('han purple') = [0.320000 0.090000 0.980000];
365 rgbmap('hansa yellow') = [0.910000 0.840000 0.420000];
366 rgbmap('harlequin') = [0.250000 1.000000 0.000000];
367 rgbmap('harvard crimson') = [0.790000 0.000000 0.090000];
368 rgbmap('harvest gold') = [0.850000 0.570000 0.000000];
369 rgbmap('heart gold') = [0.500000 0.500000 0.000000];
370 rgbmap('heliotrope') = [0.870000 0.450000 1.000000];
371 rgbmap('hollywood cerise') = [0.960000 0.000000 0.630000];
372 rgbmap('honeydew') = [0.940000 1.000000 0.940000];
373 rgbmap('hookers green') = [0.000000 0.440000 0.000000];
374 rgbmap('hot magenta') = [1.000000 0.110000 0.810000];
375 rgbmap('hot pink') = [1.000000 0.410000 0.710000];
376 rgbmap('hunter green') = [0.210000 0.370000 0.230000];
377 rgbmap('iceberg') = [0.440000 0.650000 0.820000];
378 rgbmap('icterine') = [0.990000 0.970000 0.370000];
379 rgbmap('inchworm') = [0.700000 0.930000 0.360000];
380 rgbmap('india green') = [0.070000 0.530000 0.030000];
381 rgbmap('indian red') = [0.800000 0.360000 0.360000];
382 rgbmap('indian yellow') = [0.890000 0.660000 0.340000];
383 rgbmap('indigo (dye)') = [0.000000 0.250000 0.420000];
384 rgbmap('indigo (web)') = [0.290000 0.000000 0.510000];
385 rgbmap('international klein blue') = [0.000000 0.180000 0.650000];
386 rgbmap('international orange') = [1.000000 0.310000 0.000000];
387 rgbmap('iris') = [0.350000 0.310000 0.810000];
388 rgbmap('isabelline') = [0.960000 0.940000 0.930000];
389 rgbmap('islamic green') = [0.000000 0.560000 0.000000];
390 rgbmap('ivory') = [1.000000 1.000000 0.940000];
391 rgbmap('jade') = [0.000000 0.660000 0.420000];
392 rgbmap('jasmine') = [0.970000 0.870000 0.490000];
393 rgbmap('jasper') = [0.840000 0.230000 0.240000];
394 rgbmap('jazzberry jam') = [0.650000 0.040000 0.370000];
395 rgbmap('jonquil') = [0.980000 0.850000 0.370000];
396 rgbmap('june bud') = [0.740000 0.850000 0.340000];
397 rgbmap('jungle green') = [0.160000 0.670000 0.530000];
398 rgbmap('kelly green') = [0.300000 0.730000 0.090000];
399 rgbmap('khaki (html/css) (khaki)') = [0.760000 0.690000 0.570000];
400 rgbmap('khaki (x11) (light khaki)') = [0.940000 0.900000 0.550000];
401 rgbmap('ku crimson') = [0.910000 0.000000 0.050000];
402 rgbmap('la salle green') = [0.030000 0.470000 0.190000];
403 rgbmap('languid lavender') = [0.840000 0.790000 0.870000];
404 rgbmap('lapis lazuli') = [0.150000 0.380000 0.610000];
405 rgbmap('laser lemon') = [1.000000 1.000000 0.130000];
406 rgbmap('laurel green') = [0.660000 0.730000 0.620000];
407 rgbmap('lava') = [0.810000 0.060000 0.130000];
408 rgbmap('lavender (floral)') = [0.710000 0.490000 0.860000];
409 rgbmap('lavender (web)') = [0.900000 0.900000 0.980000];
410 rgbmap('lavender blue') = [0.800000 0.800000 1.000000];
411 rgbmap('lavender blush') = [1.000000 0.940000 0.960000];
412 rgbmap('lavender gray') = [0.770000 0.760000 0.820000];
413 rgbmap('lavender indigo') = [0.580000 0.340000 0.920000];
414 rgbmap('lavender magenta') = [0.930000 0.510000 0.930000];
415 rgbmap('lavender mist') = [0.900000 0.900000 0.980000];
416 rgbmap('lavender pink') = [0.980000 0.680000 0.820000];
417 rgbmap('lavender purple') = [0.590000 0.480000 0.710000];
418 rgbmap('lavender rose') = [0.980000 0.630000 0.890000];
419 rgbmap('lawn green') = [0.490000 0.990000 0.000000];
420 rgbmap('lemon') = [1.000000 0.970000 0.000000];
421 rgbmap('lemon chiffon') = [1.000000 0.980000 0.800000];
422 rgbmap('light apricot') = [0.990000 0.840000 0.690000];
423 rgbmap('light blue') = [0.680000 0.850000 0.900000];
424 rgbmap('light brown') = [0.710000 0.400000 0.110000];
425 rgbmap('light carmine pink') = [0.900000 0.400000 0.380000];
426 rgbmap('light coral') = [0.940000 0.500000 0.500000];
427 rgbmap('light cornflower blue') = [0.600000 0.810000 0.930000];
428 rgbmap('light crimson') = [0.960000 0.410000 0.570000];
429 rgbmap('light cyan') = [0.880000 1.000000 1.000000];
430 rgbmap('light fuchsia pink') = [0.980000 0.520000 0.940000];
431 rgbmap('light goldenrod yellow') = [0.980000 0.980000 0.820000];
432 rgbmap('light gray') = [0.830000 0.830000 0.830000];
433 rgbmap('light green') = [0.560000 0.930000 0.560000];
434 rgbmap('light khaki') = [0.940000 0.900000 0.550000];
435 rgbmap('light mauve') = [0.860000 0.820000 1.000000];
436 rgbmap('light pastel purple') = [0.690000 0.610000 0.850000];
437 rgbmap('light pink') = [1.000000 0.710000 0.760000];
438 rgbmap('light salmon') = [1.000000 0.630000 0.480000];
439 rgbmap('light salmon pink') = [1.000000 0.600000 0.600000];
440 rgbmap('light sea green') = [0.130000 0.700000 0.670000];
441 rgbmap('light sky blue') = [0.530000 0.810000 0.980000];
442 rgbmap('light slate gray') = [0.470000 0.530000 0.600000];
443 rgbmap('light taupe') = [0.700000 0.550000 0.430000];
444 rgbmap('light thulian pink') = [0.900000 0.560000 0.670000];
445 rgbmap('light timberwolf') = [0.930000 0.910000 0.890000];
446 rgbmap('light yellow') = [1.000000 1.000000 0.880000];
447 rgbmap('lilac') = [0.780000 0.640000 0.780000];
448 rgbmap('lime (color wheel)') = [0.750000 1.000000 0.000000];
449 rgbmap('lime (web) (x11 green)') = [0.000000 1.000000 0.000000];
450 rgbmap('lime green') = [0.200000 0.800000 0.200000];
451 rgbmap('lincoln green') = [0.110000 0.350000 0.020000];
452 rgbmap('linen') = [0.980000 0.940000 0.900000];
453 rgbmap('lion') = [0.760000 0.600000 0.420000];
454 rgbmap('liver') = [0.330000 0.290000 0.310000];
455 rgbmap('lust') = [0.900000 0.130000 0.130000];
456 rgbmap('magenta') = [1.000000 0.000000 1.000000];
457 rgbmap('magenta (dye)') = [0.790000 0.080000 0.480000];
458 rgbmap('magenta (process)') = [1.000000 0.000000 0.560000];
459 rgbmap('magic mint') = [0.670000 0.940000 0.820000];
460 rgbmap('magnolia') = [0.970000 0.960000 1.000000];
461 rgbmap('mahogany') = [0.750000 0.250000 0.000000];
462 rgbmap('maize') = [0.980000 0.930000 0.370000];
463 rgbmap('majorelle blue') = [0.380000 0.310000 0.860000];
464 rgbmap('malachite') = [0.040000 0.850000 0.320000];
465 rgbmap('manatee') = [0.590000 0.600000 0.670000];
466 rgbmap('mango tango') = [1.000000 0.510000 0.260000];
467 rgbmap('mantis') = [0.450000 0.760000 0.400000];
468 rgbmap('maroon (html/css)') = [0.500000 0.000000 0.000000];
469 rgbmap('maroon (x11)') = [0.690000 0.190000 0.380000];
470 rgbmap('mauve') = [0.880000 0.690000 1.000000];
471 rgbmap('mauve taupe') = [0.570000 0.370000 0.430000];
472 rgbmap('mauvelous') = [0.940000 0.600000 0.670000];
473 rgbmap('maya blue') = [0.450000 0.760000 0.980000];
474 rgbmap('meat brown') = [0.900000 0.720000 0.230000];
475 rgbmap('medium aquamarine') = [0.400000 0.800000 0.670000];
476 rgbmap('medium blue') = [0.000000 0.000000 0.800000];
477 rgbmap('medium candy apple red') = [0.890000 0.020000 0.170000];
478 rgbmap('medium carmine') = [0.690000 0.250000 0.210000];
479 rgbmap('medium champagne') = [0.950000 0.900000 0.670000];
480 rgbmap('medium electric blue') = [0.010000 0.310000 0.590000];
481 rgbmap('medium jungle green') = [0.110000 0.210000 0.180000];
482 rgbmap('medium lavender magenta') = [0.800000 0.600000 0.800000];
483 rgbmap('medium orchid') = [0.730000 0.330000 0.830000];
484 rgbmap('medium persian blue') = [0.000000 0.400000 0.650000];
485 rgbmap('medium purple') = [0.580000 0.440000 0.860000];
486 rgbmap('medium red-violet') = [0.730000 0.200000 0.520000];
487 rgbmap('medium sea green') = [0.240000 0.700000 0.440000];
488 rgbmap('medium slate blue') = [0.480000 0.410000 0.930000];
489 rgbmap('medium spring bud') = [0.790000 0.860000 0.540000];
490 rgbmap('medium spring green') = [0.000000 0.980000 0.600000];
491 rgbmap('medium taupe') = [0.400000 0.300000 0.280000];
492 rgbmap('medium teal blue') = [0.000000 0.330000 0.710000];
493 rgbmap('medium turquoise') = [0.280000 0.820000 0.800000];
494 rgbmap('medium violet-red') = [0.780000 0.080000 0.520000];
495 rgbmap('melon') = [0.990000 0.740000 0.710000];
496 rgbmap('midnight blue') = [0.100000 0.100000 0.440000];
497 rgbmap('midnight green (eagle green)') = [0.000000 0.290000 0.330000];
498 rgbmap('mikado yellow') = [1.000000 0.770000 0.050000];
499 rgbmap('mint') = [0.240000 0.710000 0.540000];
500 rgbmap('mint cream') = [0.960000 1.000000 0.980000];
501 rgbmap('mint green') = [0.600000 1.000000 0.600000];
502 rgbmap('misty rose') = [1.000000 0.890000 0.880000];
503 rgbmap('moccasin') = [0.980000 0.920000 0.840000];
504 rgbmap('mode beige') = [0.590000 0.440000 0.090000];
505 rgbmap('moonstone blue') = [0.450000 0.660000 0.760000];
506 rgbmap('mordant red 19') = [0.680000 0.050000 0.000000];
507 rgbmap('moss green') = [0.680000 0.870000 0.680000];
508 rgbmap('mountain meadow') = [0.190000 0.730000 0.560000];
509 rgbmap('mountbatten pink') = [0.600000 0.480000 0.550000];
510 rgbmap('mulberry') = [0.770000 0.290000 0.550000];
511 rgbmap('munsell') = [0.950000 0.950000 0.960000];
512 rgbmap('mustard') = [1.000000 0.860000 0.350000];
513 rgbmap('myrtle') = [0.130000 0.260000 0.120000];
514 rgbmap('msu green') = [0.090000 0.270000 0.230000];
515 rgbmap('nadeshiko pink') = [0.960000 0.680000 0.780000];
516 rgbmap('napier green') = [0.160000 0.500000 0.000000];
517 rgbmap('naples yellow') = [0.980000 0.850000 0.370000];
518 rgbmap('navajo white') = [1.000000 0.870000 0.680000];
519 rgbmap('navy blue') = [0.000000 0.000000 0.500000];
520 rgbmap('neon carrot') = [1.000000 0.640000 0.260000];
521 rgbmap('neon fuchsia') = [1.000000 0.250000 0.390000];
522 rgbmap('neon green') = [0.220000 0.880000 0.080000];
523 rgbmap('non-photo blue') = [0.640000 0.870000 0.930000];
524 rgbmap('north texas green') = [0.020000 0.560000 0.200000];
525 rgbmap('ocean boat blue') = [0.000000 0.470000 0.750000];
526 rgbmap('ochre') = [0.800000 0.470000 0.130000];
527 rgbmap('office green') = [0.000000 0.500000 0.000000];
528 rgbmap('old gold') = [0.810000 0.710000 0.230000];
529 rgbmap('old lace') = [0.990000 0.960000 0.900000];
530 rgbmap('old lavender') = [0.470000 0.410000 0.470000];
531 rgbmap('old mauve') = [0.400000 0.190000 0.280000];
532 rgbmap('old rose') = [0.750000 0.500000 0.510000];
533 rgbmap('olive') = [0.500000 0.500000 0.000000];
534 rgbmap('olive drab (web) (olive drab #3)') = [0.420000 0.560000 0.140000];
535 rgbmap('olive drab #7') = [0.240000 0.200000 0.120000];
536 rgbmap('olivine') = [0.600000 0.730000 0.450000];
537 rgbmap('onyx') = [0.060000 0.060000 0.060000];
538 rgbmap('opera mauve') = [0.720000 0.520000 0.650000];
539 rgbmap('orange (color wheel)') = [1.000000 0.500000 0.000000];
540 rgbmap('orange (ryb)') = [0.980000 0.600000 0.010000];
541 rgbmap('orange (web color)') = [1.000000 0.650000 0.000000];
542 rgbmap('orange peel') = [1.000000 0.620000 0.000000];
543 rgbmap('orange-red') = [1.000000 0.270000 0.000000];
544 rgbmap('orchid') = [0.850000 0.440000 0.840000];
545 rgbmap('otter brown') = [0.400000 0.260000 0.130000];
546 rgbmap('outer space') = [0.250000 0.290000 0.300000];
547 rgbmap('outrageous orange') = [1.000000 0.430000 0.290000];
548 rgbmap('oxford blue') = [0.000000 0.130000 0.280000];
549 rgbmap('ou crimson red') = [0.600000 0.000000 0.000000];
550 rgbmap('pakistan green') = [0.000000 0.400000 0.000000];
551 rgbmap('palatinate blue') = [0.150000 0.230000 0.890000];
552 rgbmap('palatinate purple') = [0.410000 0.160000 0.380000];
553 rgbmap('pale aqua') = [0.740000 0.830000 0.900000];
554 rgbmap('pale blue') = [0.690000 0.930000 0.930000];
555 rgbmap('pale brown') = [0.600000 0.460000 0.330000];
556 rgbmap('pale carmine') = [0.690000 0.250000 0.210000];
557 rgbmap('pale cerulean') = [0.610000 0.770000 0.890000];
558 rgbmap('pale chestnut') = [0.870000 0.680000 0.690000];
559 rgbmap('pale copper') = [0.850000 0.540000 0.400000];
560 rgbmap('pale cornflower blue') = [0.670000 0.800000 0.940000];
561 rgbmap('pale gold') = [0.900000 0.750000 0.540000];
562 rgbmap('pale goldenrod') = [0.930000 0.910000 0.670000];
563 rgbmap('pale green') = [0.600000 0.980000 0.600000];
564 rgbmap('pale magenta') = [0.980000 0.520000 0.900000];
565 rgbmap('pale pink') = [0.980000 0.850000 0.870000];
566 rgbmap('pale plum') = [0.800000 0.600000 0.800000];
567 rgbmap('pale red-violet') = [0.860000 0.440000 0.580000];
568 rgbmap('pale robin egg blue') = [0.590000 0.870000 0.820000];
569 rgbmap('pale silver') = [0.790000 0.750000 0.730000];
570 rgbmap('pale spring bud') = [0.930000 0.920000 0.740000];
571 rgbmap('pale taupe') = [0.740000 0.600000 0.490000];
572 rgbmap('pale violet-red') = [0.860000 0.440000 0.580000];
573 rgbmap('pansy purple') = [0.470000 0.090000 0.290000];
574 rgbmap('papaya whip') = [1.000000 0.940000 0.840000];
575 rgbmap('paris green') = [0.310000 0.780000 0.470000];
576 rgbmap('pastel blue') = [0.680000 0.780000 0.810000];
577 rgbmap('pastel brown') = [0.510000 0.410000 0.330000];
578 rgbmap('pastel gray') = [0.810000 0.810000 0.770000];
579 rgbmap('pastel green') = [0.470000 0.870000 0.470000];
580 rgbmap('pastel magenta') = [0.960000 0.600000 0.760000];
581 rgbmap('pastel orange') = [1.000000 0.700000 0.280000];
582 rgbmap('pastel pink') = [1.000000 0.820000 0.860000];
583 rgbmap('pastel purple') = [0.700000 0.620000 0.710000];
584 rgbmap('pastel red') = [1.000000 0.410000 0.380000];
585 rgbmap('pastel violet') = [0.800000 0.600000 0.790000];
586 rgbmap('pastel yellow') = [0.990000 0.990000 0.590000];
587 rgbmap('patriarch') = [0.500000 0.000000 0.500000];
588 rgbmap('paynes grey') = [0.250000 0.250000 0.280000];
589 rgbmap('peach') = [1.000000 0.900000 0.710000];
590 rgbmap('peach-orange') = [1.000000 0.800000 0.600000];
591 rgbmap('peach puff') = [1.000000 0.850000 0.730000];
592 rgbmap('peach-yellow') = [0.980000 0.870000 0.680000];
593 rgbmap('pear') = [0.820000 0.890000 0.190000];
594 rgbmap('pearl') = [0.920000 0.880000 0.780000];
595 rgbmap('pearl aqua') = [0.530000 0.850000 0.750000];
596 rgbmap('peridot') = [0.900000 0.890000 0.000000];
597 rgbmap('periwinkle') = [0.800000 0.800000 1.000000];
598 rgbmap('persian blue') = [0.110000 0.220000 0.730000];
599 rgbmap('persian green') = [0.000000 0.650000 0.580000];
600 rgbmap('persian indigo') = [0.200000 0.070000 0.480000];
601 rgbmap('persian orange') = [0.850000 0.560000 0.350000];
602 rgbmap('persian pink') = [0.970000 0.500000 0.750000];
603 rgbmap('persian plum') = [0.440000 0.110000 0.110000];
604 rgbmap('persian red') = [0.800000 0.200000 0.200000];
605 rgbmap('persian rose') = [1.000000 0.160000 0.640000];
606 rgbmap('persimmon') = [0.930000 0.350000 0.000000];
607 rgbmap('phlox') = [0.870000 0.000000 1.000000];
608 rgbmap('phthalo blue') = [0.000000 0.060000 0.540000];
609 rgbmap('phthalo green') = [0.070000 0.210000 0.140000];
610 rgbmap('piggy pink') = [0.990000 0.870000 0.900000];
611 rgbmap('pine green') = [0.000000 0.470000 0.440000];
612 rgbmap('pink') = [1.000000 0.750000 0.800000];
613 rgbmap('pink-orange') = [1.000000 0.600000 0.400000];
614 rgbmap('pink pearl') = [0.910000 0.670000 0.810000];
615 rgbmap('pink sherbet') = [0.970000 0.560000 0.650000];
616 rgbmap('pistachio') = [0.580000 0.770000 0.450000];
617 rgbmap('platinum') = [0.900000 0.890000 0.890000];
618 rgbmap('plum (traditional)') = [0.560000 0.270000 0.520000];
619 rgbmap('plum (web)') = [0.800000 0.600000 0.800000];
620 rgbmap('polar bear') = [0.980000 0.950000 0.840000];
621 rgbmap('portland orange') = [1.000000 0.350000 0.210000];
622 rgbmap('powder blue (web)') = [0.690000 0.880000 0.900000];
623 rgbmap('princeton orange') = [1.000000 0.560000 0.000000];
624 rgbmap('prune') = [0.440000 0.110000 0.110000];
625 rgbmap('prussian blue') = [0.000000 0.190000 0.330000];
626 rgbmap('psychedelic purple') = [0.870000 0.000000 1.000000];
627 rgbmap('puce') = [0.800000 0.530000 0.600000];
628 rgbmap('pumpkin') = [1.000000 0.460000 0.090000];
629 rgbmap('purple (html/css)') = [0.500000 0.000000 0.500000];
630 rgbmap('purple (munsell)') = [0.620000 0.000000 0.770000];
631 rgbmap('purple (x11)') = [0.630000 0.360000 0.940000];
632 rgbmap('purple heart') = [0.410000 0.210000 0.610000];
633 rgbmap('purple mountain majesty') = [0.590000 0.470000 0.710000];
634 rgbmap('purple pizzazz') = [1.000000 0.310000 0.850000];
635 rgbmap('purple taupe') = [0.310000 0.250000 0.300000];
636 rgbmap('quartz') = [0.320000 0.280000 0.310000];
637 rgbmap('radical red') = [1.000000 0.210000 0.370000];
638 rgbmap('raspberry') = [0.890000 0.040000 0.360000];
639 rgbmap('raspberry glace') = [0.570000 0.370000 0.430000];
640 rgbmap('raspberry pink') = [0.890000 0.310000 0.610000];
641 rgbmap('raspberry rose') = [0.700000 0.270000 0.420000];
642 rgbmap('raw umber') = [0.510000 0.400000 0.270000];
643 rgbmap('razzle dazzle rose') = [1.000000 0.200000 0.800000];
644 rgbmap('razzmatazz') = [0.890000 0.150000 0.420000];
645 rgbmap('red') = [1.000000 0.000000 0.000000];
646 rgbmap('red (munsell)') = [0.950000 0.000000 0.240000];
647 rgbmap('red (ncs)') = [0.770000 0.010000 0.200000];
648 rgbmap('red (pigment)') = [0.930000 0.110000 0.140000];
649 rgbmap('red (ryb)') = [1.000000 0.150000 0.070000];
650 rgbmap('red-brown') = [0.650000 0.160000 0.160000];
651 rgbmap('red-violet') = [0.780000 0.080000 0.520000];
652 rgbmap('redwood') = [0.670000 0.310000 0.320000];
653 rgbmap('regalia') = [0.320000 0.180000 0.500000];
654 rgbmap('rich black') = [0.000000 0.250000 0.250000];
655 rgbmap('rich brilliant lavender') = [0.950000 0.650000 1.000000];
656 rgbmap('rich carmine') = [0.840000 0.000000 0.250000];
657 rgbmap('rich electric blue') = [0.030000 0.570000 0.820000];
658 rgbmap('rich lavender') = [0.670000 0.380000 0.800000];
659 rgbmap('rich lilac') = [0.710000 0.400000 0.820000];
660 rgbmap('rich maroon') = [0.690000 0.190000 0.380000];
661 rgbmap('rifle green') = [0.250000 0.280000 0.200000];
662 rgbmap('robin egg blue') = [0.000000 0.800000 0.800000];
663 rgbmap('rose') = [1.000000 0.000000 0.500000];
664 rgbmap('rose bonbon') = [0.980000 0.260000 0.620000];
665 rgbmap('rose ebony') = [0.400000 0.300000 0.280000];
666 rgbmap('rose gold') = [0.720000 0.430000 0.470000];
667 rgbmap('rose madder') = [0.890000 0.150000 0.210000];
668 rgbmap('rose pink') = [1.000000 0.400000 0.800000];
669 rgbmap('rose quartz') = [0.670000 0.600000 0.660000];
670 rgbmap('rose taupe') = [0.560000 0.360000 0.360000];
671 rgbmap('rose vale') = [0.670000 0.310000 0.320000];
672 rgbmap('rosewood') = [0.400000 0.000000 0.040000];
673 rgbmap('rosso corsa') = [0.830000 0.000000 0.000000];
674 rgbmap('rosy brown') = [0.740000 0.560000 0.560000];
675 rgbmap('royal azure') = [0.000000 0.220000 0.660000];
676 rgbmap('royal blue (traditional)') = [0.000000 0.140000 0.400000];
677 rgbmap('royal blue (web)') = [0.250000 0.410000 0.880000];
678 rgbmap('royal fuchsia') = [0.790000 0.170000 0.570000];
679 rgbmap('royal purple') = [0.470000 0.320000 0.660000];
680 rgbmap('ruby') = [0.880000 0.070000 0.370000];
681 rgbmap('ruddy') = [1.000000 0.000000 0.160000];
682 rgbmap('ruddy brown') = [0.730000 0.400000 0.160000];
683 rgbmap('ruddy pink') = [0.880000 0.560000 0.590000];
684 rgbmap('rufous') = [0.660000 0.110000 0.030000];
685 rgbmap('russet') = [0.500000 0.270000 0.110000];
686 rgbmap('rust') = [0.720000 0.250000 0.050000];
687 rgbmap('sacramento state green') = [0.000000 0.340000 0.250000];
688 rgbmap('saddle brown') = [0.550000 0.270000 0.070000];
689 rgbmap('safety orange (blaze orange)') = [1.000000 0.400000 0.000000];
690 rgbmap('saffron') = [0.960000 0.770000 0.190000];
691 rgbmap('st. patricks blue') = [0.140000 0.160000 0.480000];
692 rgbmap('salmon') = [1.000000 0.550000 0.410000];
693 rgbmap('salmon pink') = [1.000000 0.570000 0.640000];
694 rgbmap('sand') = [0.760000 0.700000 0.500000];
695 rgbmap('sand dune') = [0.590000 0.440000 0.090000];
696 rgbmap('sandstorm') = [0.930000 0.840000 0.250000];
697 rgbmap('sandy brown') = [0.960000 0.640000 0.380000];
698 rgbmap('sandy taupe') = [0.590000 0.440000 0.090000];
699 rgbmap('sangria') = [0.570000 0.000000 0.040000];
700 rgbmap('sap green') = [0.310000 0.490000 0.160000];
701 rgbmap('sapphire') = [0.060000 0.320000 0.730000];
702 rgbmap('satin sheen gold') = [0.800000 0.630000 0.210000];
703 rgbmap('scarlet') = [1.000000 0.140000 0.000000];
704 rgbmap('school bus yellow') = [1.000000 0.850000 0.000000];
705 rgbmap('screamin green') = [0.460000 1.000000 0.440000];
706 rgbmap('sea green') = [0.180000 0.550000 0.340000];
707 rgbmap('seal brown') = [0.200000 0.080000 0.080000];
708 rgbmap('seashell') = [1.000000 0.960000 0.930000];
709 rgbmap('selective yellow') = [1.000000 0.730000 0.000000];
710 rgbmap('sepia') = [0.440000 0.260000 0.080000];
711 rgbmap('shadow') = [0.540000 0.470000 0.360000];
712 rgbmap('shamrock green') = [0.000000 0.620000 0.380000];
713 rgbmap('shocking pink') = [0.990000 0.060000 0.750000];
714 rgbmap('sienna') = [0.530000 0.180000 0.090000];
715 rgbmap('silver') = [0.750000 0.750000 0.750000];
716 rgbmap('sinopia') = [0.800000 0.250000 0.040000];
717 rgbmap('skobeloff') = [0.000000 0.480000 0.450000];
718 rgbmap('sky blue') = [0.530000 0.810000 0.920000];
719 rgbmap('sky magenta') = [0.810000 0.440000 0.690000];
720 rgbmap('slate blue') = [0.420000 0.350000 0.800000];
721 rgbmap('slate gray') = [0.440000 0.500000 0.560000];
722 rgbmap('smalt (dark powder blue)') = [0.000000 0.200000 0.600000];
723 rgbmap('smokey topaz') = [0.580000 0.250000 0.030000];
724 rgbmap('smoky black') = [0.060000 0.050000 0.030000];
725 rgbmap('snow') = [1.000000 0.980000 0.980000];
726 rgbmap('spiro disco ball') = [0.060000 0.750000 0.990000];
727 rgbmap('splashed white') = [1.000000 0.990000 1.000000];
728 rgbmap('spring bud') = [0.650000 0.990000 0.000000];
729 rgbmap('spring green') = [0.000000 1.000000 0.500000];
730 rgbmap('steel blue') = [0.270000 0.510000 0.710000];
731 rgbmap('stil de grain yellow') = [0.980000 0.850000 0.370000];
732 rgbmap('stizza') = [0.600000 0.000000 0.000000];
733 rgbmap('straw') = [0.890000 0.850000 0.440000];
734 rgbmap('sunglow') = [1.000000 0.800000 0.200000];
735 rgbmap('sunset') = [0.980000 0.840000 0.650000];
736 rgbmap('tan') = [0.820000 0.710000 0.550000];
737 rgbmap('tangelo') = [0.980000 0.300000 0.000000];
738 rgbmap('tangerine') = [0.950000 0.520000 0.000000];
739 rgbmap('tangerine yellow') = [1.000000 0.800000 0.000000];
740 rgbmap('taupe') = [0.280000 0.240000 0.200000];
741 rgbmap('taupe gray') = [0.550000 0.520000 0.540000];
742 rgbmap('tea green') = [0.820000 0.940000 0.750000];
743 rgbmap('tea rose (orange)') = [0.970000 0.510000 0.470000];
744 rgbmap('tea rose (rose)') = [0.960000 0.760000 0.760000];
745 rgbmap('teal') = [0.000000 0.500000 0.500000];
746 rgbmap('teal blue') = [0.210000 0.460000 0.530000];
747 rgbmap('teal green') = [0.000000 0.510000 0.500000];
748 rgbmap('tenn? (tawny)') = [0.800000 0.340000 0.000000];
749 rgbmap('terra cotta') = [0.890000 0.450000 0.360000];
750 rgbmap('thistle') = [0.850000 0.750000 0.850000];
751 rgbmap('thulian pink') = [0.870000 0.440000 0.630000];
752 rgbmap('tickle me pink') = [0.990000 0.540000 0.670000];
753 rgbmap('tiffany blue') = [0.040000 0.730000 0.710000];
754 rgbmap('tigers eye') = [0.880000 0.550000 0.240000];
755 rgbmap('timberwolf') = [0.860000 0.840000 0.820000];
756 rgbmap('titanium yellow') = [0.930000 0.900000 0.000000];
757 rgbmap('tomato') = [1.000000 0.390000 0.280000];
758 rgbmap('toolbox') = [0.450000 0.420000 0.750000];
759 rgbmap('topaz') = [1.000000 0.780000 0.490000];
760 rgbmap('tractor red') = [0.990000 0.050000 0.210000];
761 rgbmap('trolley grey') = [0.500000 0.500000 0.500000];
762 rgbmap('tropical rain forest') = [0.000000 0.460000 0.370000];
763 rgbmap('true blue') = [0.000000 0.450000 0.810000];
764 rgbmap('tufts blue') = [0.280000 0.570000 0.810000];
765 rgbmap('tumbleweed') = [0.870000 0.670000 0.530000];
766 rgbmap('turkish rose') = [0.710000 0.450000 0.510000];
767 rgbmap('turquoise') = [0.190000 0.840000 0.780000];
768 rgbmap('turquoise blue') = [0.000000 1.000000 0.940000];
769 rgbmap('turquoise green') = [0.630000 0.840000 0.710000];
770 rgbmap('tuscan red') = [0.400000 0.260000 0.300000];
771 rgbmap('twilight lavender') = [0.540000 0.290000 0.420000];
772 rgbmap('tyrian purple') = [0.400000 0.010000 0.240000];
773 rgbmap('ua blue') = [0.000000 0.200000 0.670000];
774 rgbmap('ua red') = [0.850000 0.000000 0.300000];
775 rgbmap('ube') = [0.530000 0.470000 0.760000];
776 rgbmap('ucla blue') = [0.330000 0.410000 0.580000];
777 rgbmap('ucla gold') = [1.000000 0.700000 0.000000];
778 rgbmap('ufo green') = [0.240000 0.820000 0.440000];
779 rgbmap('ultramarine') = [0.070000 0.040000 0.560000];
780 rgbmap('ultramarine blue') = [0.250000 0.400000 0.960000];
781 rgbmap('ultra pink') = [1.000000 0.440000 1.000000];
782 rgbmap('umber') = [0.390000 0.320000 0.280000];
783 rgbmap('united nations blue') = [0.360000 0.570000 0.900000];
784 rgbmap('university of california gold') = [0.720000 0.530000 0.150000];
785 rgbmap('unmellow yellow') = [1.000000 1.000000 0.400000];
786 rgbmap('up forest green') = [0.000000 0.270000 0.130000];
787 rgbmap('up maroon') = [0.480000 0.070000 0.070000];
788 rgbmap('upsdell red') = [0.680000 0.090000 0.130000];
789 rgbmap('urobilin') = [0.880000 0.680000 0.130000];
790 rgbmap('usc cardinal') = [0.600000 0.000000 0.000000];
791 rgbmap('usc gold') = [1.000000 0.800000 0.000000];
792 rgbmap('utah crimson') = [0.830000 0.000000 0.250000];
793 rgbmap('vanilla') = [0.950000 0.900000 0.670000];
794 rgbmap('vegas gold') = [0.770000 0.700000 0.350000];
795 rgbmap('venetian red') = [0.780000 0.030000 0.080000];
796 rgbmap('verdigris') = [0.260000 0.700000 0.680000];
797 rgbmap('vermilion') = [0.890000 0.260000 0.200000];
798 rgbmap('veronica') = [0.630000 0.360000 0.940000];
799 rgbmap('violet') = [0.560000 0.000000 1.000000];
800 rgbmap('violet (color wheel)') = [0.500000 0.000000 1.000000];
801 rgbmap('violet (ryb)') = [0.530000 0.000000 0.690000];
802 rgbmap('violet (web)') = [0.930000 0.510000 0.930000];
803 rgbmap('viridian') = [0.250000 0.510000 0.430000];
804 rgbmap('vivid auburn') = [0.580000 0.150000 0.140000];
805 rgbmap('vivid burgundy') = [0.620000 0.110000 0.210000];
806 rgbmap('vivid cerise') = [0.850000 0.110000 0.510000];
807 rgbmap('vivid tangerine') = [1.000000 0.630000 0.540000];
808 rgbmap('vivid violet') = [0.620000 0.000000 1.000000];
809 rgbmap('warm black') = [0.000000 0.260000 0.260000];
810 rgbmap('wenge') = [0.390000 0.330000 0.320000];
811 rgbmap('wheat') = [0.960000 0.870000 0.700000];
812 rgbmap('white') = [1.000000 1.000000 1.000000];
813 rgbmap('white smoke') = [0.960000 0.960000 0.960000];
814 rgbmap('wild blue yonder') = [0.640000 0.680000 0.820000];
815 rgbmap('wild strawberry') = [1.000000 0.260000 0.640000];
816 rgbmap('wild watermelon') = [0.990000 0.420000 0.520000];
817 rgbmap('wine') = [0.450000 0.180000 0.220000];
818 rgbmap('wisteria') = [0.790000 0.630000 0.860000];
819 rgbmap('xanadu') = [0.450000 0.530000 0.470000];
820 rgbmap('yale blue') = [0.060000 0.300000 0.570000];
821 rgbmap('yellow') = [1.000000 1.000000 0.000000];
822 rgbmap('yellow (munsell)') = [0.940000 0.800000 0.000000];
823 rgbmap('yellow (ncs)') = [1.000000 0.830000 0.000000];
824 rgbmap('yellow (process)') = [1.000000 0.940000 0.000000];
825 rgbmap('yellow (ryb)') = [1.000000 1.000000 0.200000];
826 rgbmap('yellow-green') = [0.600000 0.800000 0.200000];
827 rgbmap('yellow orange') = [1.000000 0.680000 0.260000];
828 rgbmap('zinnwaldite brown') = [0.170000 0.090000 0.030000];
829 rgbmap('zaffre') = [0.000000 0.080000 0.660000];
830 end
831 if nargin < 1
832 cname = [];
833 else
834 % MATLAB 2018a compatibility: containers.Map() keys must be char vectors.
835 cname = convertStringsToChars(cname);
836 end
837 if isempty(cname)
838 triplet = rgbmap;
839 %keys = transpose(rgbmap.keys);
840 else
841 triplet = rgbmap(lower(cname));
842 end
843end
function name(in vendor)
Return the MPI library name as used in naming the ParaMonte MATLAB shared libraries.
function database()
Return a scalar MATLAB logical that is true if and only if the current installation of MATLAB contain...
function rgb(in cname)
Return the RGB triplet corresponding to the input color name cname.