graphics_style/styles/color/builtin.rs
1use super::*;
2
3// noinspection SpellCheckingInspection
4impl Color {
5 /// `#F0F8FF = rgb(240 248 255)`
6 ///
7 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F0F8FF;"></div>
8 pub const ALICE_BLUE: Self = Self::new(240, 248, 255, 255);
9
10 /// `#FAEBD7 = rgb(250 235 215)`
11 ///
12 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FAEBD7;"></div>
13 pub const ANTIQUE_WHITE: Self = Self::new(250, 235, 215, 255);
14
15 /// `#00FFFF = rgb(0 255 255)`
16 ///
17 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #00FFFF;"></div>
18 pub const AQUA: Self = Self::new(0, 255, 255, 255);
19
20 /// `#7FFFD4 = rgb(127 255 212)`
21 ///
22 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #7FFFD4;"></div>
23 pub const AQUA_MARINE: Self = Self::new(127, 255, 212, 255);
24
25 /// `#F0FFFF = rgb(240 255 255)`
26 ///
27 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F0FFFF;"></div>
28 pub const AZURE: Self = Self::new(240, 255, 255, 255);
29
30 /// `#F5F5DC = rgb(245 245 220)`
31 ///
32 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F5F5DC;"></div>
33 pub const BEIGE: Self = Self::new(245, 245, 220, 255);
34
35 /// `#FFE4C4 = rgb(255 228 196)`
36 ///
37 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFE4C4;"></div>
38 pub const BISQUE: Self = Self::new(255, 228, 196, 255);
39
40 /// `#000000 = rgb(0 0 0)`
41 ///
42 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #000000;"></div>
43 pub const BLACK: Self = Self::new(0, 0, 0, 255);
44
45 /// `#FFEBCD = rgb(255 235 205)`
46 ///
47 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFEBCD;"></div>
48 pub const BLANCHEDALMOND: Self = Self::new(255, 235, 205, 255);
49
50 /// `#0000FF = rgb(0 0 255)`
51 ///
52 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #0000FF;"></div>
53 pub const BLUE: Self = Self::new(0, 0, 255, 255);
54
55 /// `#8A2BE2 = rgb(138 43 226)`
56 ///
57 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #8A2BE2;"></div>
58 pub const BLUE_VIOLET: Self = Self::new(138, 43, 226, 255);
59
60 /// `#A52A2A = rgb(165 42 42)`
61 ///
62 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #A52A2A;"></div>
63 pub const BROWN: Self = Self::new(165, 42, 42, 255);
64
65 /// `#DEB887 = rgb(222 184 135)`
66 ///
67 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #DEB887;"></div>
68 pub const BURLYWOOD: Self = Self::new(222, 184, 135, 255);
69
70 /// `#5F9EA0 = rgb(95 158 160)`
71 ///
72 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #5F9EA0;"></div>
73 pub const CADET_BLUE: Self = Self::new(95, 158, 160, 255);
74
75 /// `#7FFF00 = rgb(127 255 0)`
76 ///
77 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #7FFF00;"></div>
78 pub const CHARTREUSE: Self = Self::new(127, 255, 0, 255);
79
80 /// `#D2691E = rgb(210 105 30)`
81 ///
82 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #D2691E;"></div>
83 pub const CHOCOLATE: Self = Self::new(210, 105, 30, 255);
84
85 /// `#FF7F50 = rgb(255 127 80)`
86 ///
87 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FF7F50;"></div>
88 pub const CORAL: Self = Self::new(255, 127, 80, 255);
89
90 /// `#6495ED = rgb(100 149 237)`
91 ///
92 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #6495ED;"></div>
93 pub const CORNFLOWER_BLUE: Self = Self::new(100, 149, 237, 255);
94
95 /// `#FFF8DC = rgb(255 248 220)`
96 ///
97 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFF8DC;"></div>
98 pub const CORNSILK: Self = Self::new(255, 248, 220, 255);
99
100 /// `#DC143C = rgb(220 20 60)`
101 ///
102 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #DC143C;"></div>
103 pub const CRIMSON: Self = Self::new(220, 20, 60, 255);
104
105 /// `#00FFFF = rgb(0 255 255)`
106 ///
107 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #00FFFF;"></div>
108 pub const CYAN: Self = Self::new(0, 255, 255, 255);
109
110 /// `#00008B = rgb(0 0 139)`
111 ///
112 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #00008B;"></div>
113 pub const DARK_BLUE: Self = Self::new(0, 0, 139, 255);
114
115 /// `#008B8B = rgb(0 139 139)`
116 ///
117 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #008B8B;"></div>
118 pub const DARK_CYAN: Self = Self::new(0, 139, 139, 255);
119
120 /// `#B8860B = rgb(184 134 11)`
121 ///
122 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #B8860B;"></div>
123 pub const DARK_GOLDENROD: Self = Self::new(184, 134, 11, 255);
124
125 /// `#A9A9A9 = rgb(169 169 169)`
126 ///
127 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #A9A9A9;"></div>
128 pub const DARK_GRAY: Self = Self::new(169, 169, 169, 255);
129
130 /// `#006400 = rgb(0 100 0)`
131 ///
132 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #006400;"></div>
133 pub const DARK_GREEN: Self = Self::new(0, 100, 0, 255);
134
135 /// `#A9A9A9 = rgb(169 169 169)`
136 ///
137 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #A9A9A9;"></div>
138 pub const DARK_GREY: Self = Self::new(169, 169, 169, 255);
139
140 /// `#BDB76B = rgb(189 183 107)`
141 ///
142 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #BDB76B;"></div>
143 pub const DARK_KHAKI: Self = Self::new(189, 183, 107, 255);
144
145 /// `#8B008B = rgb(139 0 139)`
146 ///
147 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #8B008B;"></div>
148 pub const DARK_MAGENTA: Self = Self::new(139, 0, 139, 255);
149
150 /// `#556B2F = rgb(85 107 47)`
151 ///
152 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #556B2F;"></div>
153 pub const DARK_OLIVE_GREEN: Self = Self::new(85, 107, 47, 255);
154
155 /// `#FF8C00 = rgb(255 140 0)`
156 ///
157 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FF8C00;"></div>
158 pub const DARK_ORANGE: Self = Self::new(255, 140, 0, 255);
159
160 /// `#9932CC = rgb(153 50 204)`
161 ///
162 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #9932CC;"></div>
163 pub const DARK_ORCHID: Self = Self::new(153, 50, 204, 255);
164
165 /// `#8B0000 = rgb(139 0 0)`
166 ///
167 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #8B0000;"></div>
168 pub const DARK_RED: Self = Self::new(139, 0, 0, 255);
169
170 /// `#E9967A = rgb(233 150 122)`
171 ///
172 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #E9967A;"></div>
173 pub const DARK_SALMON: Self = Self::new(233, 150, 122, 255);
174
175 /// `#8FBC8F = rgb(143 188 143)`
176 ///
177 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #8FBC8F;"></div>
178 pub const DARK_SEAGREEN: Self = Self::new(143, 188, 143, 255);
179
180 /// `#483D8B = rgb(72 61 139)`
181 ///
182 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #483D8B;"></div>
183 pub const DARK_SLATE_BLUE: Self = Self::new(72, 61, 139, 255);
184
185 /// `#2F4F4F = rgb(47 79 79)`
186 ///
187 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #2F4F4F;"></div>
188 pub const DARK_SLATEGRAY: Self = Self::new(47, 79, 79, 255);
189
190 /// `#2F4F4F = rgb(47 79 79)`
191 ///
192 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #2F4F4F;"></div>
193 pub const DARK_SLATEGREY: Self = Self::new(47, 79, 79, 255);
194
195 /// `#00CED1 = rgb(0 206 209)`
196 ///
197 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #00CED1;"></div>
198 pub const DARK_TURQUOISE: Self = Self::new(0, 206, 209, 255);
199
200 /// `#9400D3 = rgb(148 0 211)`
201 ///
202 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #9400D3;"></div>
203 pub const DARK_VIOLET: Self = Self::new(148, 0, 211, 255);
204
205 /// `#FF1493 = rgb(255 20 147)`
206 ///
207 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FF1493;"></div>
208 pub const DEEP_PINK: Self = Self::new(255, 20, 147, 255);
209
210 /// `#00BFFF = rgb(0 191 255)`
211 ///
212 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #00BFFF;"></div>
213 pub const DEEP_SKYBLUE: Self = Self::new(0, 191, 255, 255);
214
215 /// `#696969 = rgb(105 105 105)`
216 ///
217 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #696969;"></div>
218 pub const DIMGRAY: Self = Self::new(105, 105, 105, 255);
219
220 /// `#696969 = rgb(105 105 105)`
221 ///
222 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #696969;"></div>
223 pub const DIMGREY: Self = Self::new(105, 105, 105, 255);
224
225 /// `#1E90FF = rgb(30 144 255)`
226 ///
227 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #1E90FF;"></div>
228 pub const DODGER_BLUE: Self = Self::new(30, 144, 255, 255);
229
230 /// `#B22222 = rgb(178 34 34)`
231 ///
232 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #B22222;"></div>
233 pub const FIREBRICK: Self = Self::new(178, 34, 34, 255);
234
235 /// `#FFFAF0 = rgb(255 250 240)`
236 ///
237 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFFAF0;"></div>
238 pub const FLORAL_WHITE: Self = Self::new(255, 250, 240, 255);
239
240 /// `#228B22 = rgb(34 139 34)`
241 ///
242 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #228B22;"></div>
243 pub const FORESTGREEN: Self = Self::new(34, 139, 34, 255);
244
245 /// `#FF00FF = rgb(255 0 255)`
246 ///
247 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FF00FF;"></div>
248 pub const FUCHSIA: Self = Self::new(255, 0, 255, 255);
249
250 /// `#DCDCDC = rgb(220 220 220)`
251 ///
252 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #DCDCDC;"></div>
253 pub const GAINSBORO: Self = Self::new(220, 220, 220, 255);
254
255 /// `#F8F8FF = rgb(248 248 255)`
256 ///
257 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F8F8FF;"></div>
258 pub const GHOST_WHITE: Self = Self::new(248, 248, 255, 255);
259
260 /// `#DAA520 = rgb(218 165 32)`
261 ///
262 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #DAA520;"></div>
263 pub const GOLDEN_ROD: Self = Self::new(218, 165, 32, 255);
264
265 /// `#FFD700 = rgb(255 215 0)`
266 ///
267 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFD700;"></div>
268 pub const GOLD: Self = Self::new(255, 215, 0, 255);
269
270 /// `#808080 = rgb(128 128 128)`
271 ///
272 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #808080;"></div>
273 pub const GRAY: Self = Self::new(128, 128, 128, 255);
274
275 /// `#008000 = rgb(0 128 0)`
276 ///
277 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #008000;"></div>
278 pub const GREEN: Self = Self::new(0, 128, 0, 255);
279
280 /// `#ADFF2F = rgb(173 255 47)`
281 ///
282 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #ADFF2F;"></div>
283 pub const GREEN_YELLOW: Self = Self::new(173, 255, 47, 255);
284
285 /// `#808080 = rgb(128 128 128)`
286 ///
287 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #808080;"></div>
288 pub const GREY: Self = Self::new(128, 128, 128, 255);
289
290 /// `#F0FFF0 = rgb(240 255 240)`
291 ///
292 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F0FFF0;"></div>
293 pub const HONEYDEW: Self = Self::new(240, 255, 240, 255);
294
295 /// `#FF69B4 = rgb(255 105 180)`
296 ///
297 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FF69B4;"></div>
298 pub const HOTPINK: Self = Self::new(255, 105, 180, 255);
299
300 /// `#CD5C5C = rgb(205 92 92)`
301 ///
302 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #CD5C5C;"></div>
303 pub const INDIANRED: Self = Self::new(205, 92, 92, 255);
304
305 /// `#4B0082 = rgb(75 0 130)`
306 ///
307 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #4B0082;"></div>
308 pub const INDIGO: Self = Self::new(75, 0, 130, 255);
309
310 /// `#FFFFF0 = rgb(255 255 240)`
311 ///
312 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFFFF0;"></div>
313 pub const IVORY: Self = Self::new(255, 255, 240, 255);
314
315 /// `#F0E68C = rgb(240 230 140)`
316 ///
317 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F0E68C;"></div>
318 pub const KHAKI: Self = Self::new(240, 230, 140, 255);
319
320 /// `#FFF0F5 = rgb(255 240 245)`
321 ///
322 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFF0F5;"></div>
323 pub const LAVENDERBLUSH: Self = Self::new(255, 240, 245, 255);
324
325 /// `#E6E6FA = rgb(230 230 250)`
326 ///
327 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #E6E6FA;"></div>
328 pub const LAVENDER: Self = Self::new(230, 230, 250, 255);
329
330 /// `#7CFC00 = rgb(124 252 0)`
331 ///
332 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #7CFC00;"></div>
333 pub const LAWN_GREEN: Self = Self::new(124, 252, 0, 255);
334
335 /// `#FFFACD = rgb(255 250 205)`
336 ///
337 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFFACD;"></div>
338 pub const LEMON_CHIFFON: Self = Self::new(255, 250, 205, 255);
339
340 /// `#ADD8E6 = rgb(173 216 230)`
341 ///
342 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #ADD8E6;"></div>
343 pub const LIGHT_BLUE: Self = Self::new(173, 216, 230, 255);
344
345 /// `#F08080 = rgb(240 128 128)`
346 ///
347 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F08080;"></div>
348 pub const LIGHT_CORAL: Self = Self::new(240, 128, 128, 255);
349
350 /// `#E0FFFF = rgb(224 255 255)`
351 ///
352 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #E0FFFF;"></div>
353 pub const LIGHT_CYAN: Self = Self::new(224, 255, 255, 255);
354
355 /// `#FAFAD2 = rgb(250 250 210)`
356 ///
357 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FAFAD2;"></div>
358 pub const LIGHT_GOLDEN_ROD_YELLOW: Self = Self::new(250, 250, 210, 255);
359
360 /// `#D3D3D3 = rgb(211 211 211)`
361 ///
362 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #D3D3D3;"></div>
363 pub const LIGHT_GRAY: Self = Self::new(211, 211, 211, 255);
364
365 /// `#90EE90 = rgb(144 238 144)`
366 ///
367 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #90EE90;"></div>
368 pub const LIGHT_GREEN: Self = Self::new(144, 238, 144, 255);
369
370 /// `#D3D3D3 = rgb(211 211 211)`
371 ///
372 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #D3D3D3;"></div>
373 pub const LIGHT_GREY: Self = Self::new(211, 211, 211, 255);
374
375 /// `#FFB6C1 = rgb(255 182 193)`
376 ///
377 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFB6C1;"></div>
378 pub const LIGHT_PINK: Self = Self::new(255, 182, 193, 255);
379
380 /// `#FFA07A = rgb(255 160 122)`
381 ///
382 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFA07A;"></div>
383 pub const LIGHT_SALMON: Self = Self::new(255, 160, 122, 255);
384
385 /// `#20B2AA = rgb(32 178 170)`
386 ///
387 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #20B2AA;"></div>
388 pub const LIGHT_SEA_GREEN: Self = Self::new(32, 178, 170, 255);
389
390 /// `#87CEFA = rgb(135 206 250)`
391 ///
392 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #87CEFA;"></div>
393 pub const LIGHT_SKY_BLUE: Self = Self::new(135, 206, 250, 255);
394
395 /// `#778899 = rgb(119 136 153)`
396 ///
397 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #778899;"></div>
398 pub const LIGHT_SLATE_GRAY: Self = Self::new(119, 136, 153, 255);
399
400 /// `#778899 = rgb(119 136 153)`
401 ///
402 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #778899;"></div>
403 pub const LIGHT_SLATE_GREY: Self = Self::new(119, 136, 153, 255);
404
405 /// `#B0C4DE = rgb(176 196 222)`
406 ///
407 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #B0C4DE;"></div>
408 pub const LIGHT_STEEL_BLUE: Self = Self::new(176, 196, 222, 255);
409
410 /// `#FFFFE0 = rgb(255 255 224)`
411 ///
412 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFFFE0;"></div>
413 pub const LIGHT_YELLOW: Self = Self::new(255, 255, 224, 255);
414
415 /// `#00FF00 = rgb(0 255 0)`
416 ///
417 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #00FF00;"></div>
418 pub const LIME: Self = Self::new(0, 255, 0, 255);
419
420 /// `#32CD32 = rgb(50 205 50)`
421 ///
422 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #32CD32;"></div>
423 pub const LIME_GREEN: Self = Self::new(50, 205, 50, 255);
424
425 /// `#FAF0E6 = rgb(250 240 230)`
426 ///
427 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FAF0E6;"></div>
428 pub const LINEN: Self = Self::new(250, 240, 230, 255);
429
430 /// `#FF00FF = rgb(255 0 255)`
431 ///
432 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FF00FF;"></div>
433 pub const MAGENTA: Self = Self::new(255, 0, 255, 255);
434
435 /// `#800000 = rgb(128 0 0)`
436 ///
437 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #800000;"></div>
438 pub const MAROON: Self = Self::new(128, 0, 0, 255);
439
440 /// `#66CDAA = rgb(102 205 170)`
441 ///
442 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #66CDAA;"></div>
443 pub const MEDIUM_AQUA_MARINE: Self = Self::new(102, 205, 170, 255);
444
445 /// `#0000CD = rgb(0 0 205)`
446 ///
447 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #0000CD;"></div>
448 pub const MEDIUM_BLUE: Self = Self::new(0, 0, 205, 255);
449
450 /// `#BA55D3 = rgb(186 85 211)`
451 ///
452 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #BA55D3;"></div>
453 pub const MEDIUM_ORCHID: Self = Self::new(186, 85, 211, 255);
454
455 /// `#9370DB = rgb(147 112 219)`
456 ///
457 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #9370DB;"></div>
458 pub const MEDIUM_PURPLE: Self = Self::new(147, 112, 219, 255);
459
460 /// `#3CB371 = rgb(60 179 113)`
461 ///
462 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #3CB371;"></div>
463 pub const MEDIUM_SEA_GREEN: Self = Self::new(60, 179, 113, 255);
464
465 /// `#7B68EE = rgb(123 104 238)`
466 ///
467 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #7B68EE;"></div>
468 pub const MEDIUM_SLATE_BLUE: Self = Self::new(123, 104, 238, 255);
469
470 /// `#00FA9A = rgb(0 250 154)`
471 ///
472 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #00FA9A;"></div>
473 pub const MEDIUM_SPRING_GREEN: Self = Self::new(0, 250, 154, 255);
474
475 /// `#48D1CC = rgb(72 209 204)`
476 ///
477 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #48D1CC;"></div>
478 pub const MEDIUM_TURQUOISE: Self = Self::new(72, 209, 204, 255);
479
480 /// `#C71585 = rgb(199 21 133)`
481 ///
482 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #C71585;"></div>
483 pub const MEDIUM_VIOLET_RED: Self = Self::new(199, 21, 133, 255);
484
485 /// `#191970 = rgb(25 25 112)`
486 ///
487 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #191970;"></div>
488 pub const MIDNIGHT_BLUE: Self = Self::new(25, 25, 112, 255);
489
490 /// `#F5FFFA = rgb(245 255 250)`
491 ///
492 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F5FFFA;"></div>
493 pub const MINTCREAM: Self = Self::new(245, 255, 250, 255);
494
495 /// `#FFE4E1 = rgb(255 228 225)`
496 ///
497 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFE4E1;"></div>
498 pub const MISTYROSE: Self = Self::new(255, 228, 225, 255);
499
500 /// `#FFE4B5 = rgb(255 228 181)`
501 ///
502 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFE4B5;"></div>
503 pub const MOCCASIN: Self = Self::new(255, 228, 181, 255);
504
505 /// `#FFDEAD = rgb(255 222 173)`
506 ///
507 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFDEAD;"></div>
508 pub const NAVAJO_WHITE: Self = Self::new(255, 222, 173, 255);
509
510 /// `#000080 = rgb(0 0 128)`
511 ///
512 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #000080;"></div>
513 pub const NAVY: Self = Self::new(0, 0, 128, 255);
514
515 /// `#FDF5E6 = rgb(253 245 230)`
516 ///
517 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FDF5E6;"></div>
518 pub const OLDLACE: Self = Self::new(253, 245, 230, 255);
519
520 /// `#808000 = rgb(128 128 0)`
521 ///
522 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #808000;"></div>
523 pub const OLIVE: Self = Self::new(128, 128, 0, 255);
524
525 /// `#6B8E23 = rgb(107 142 35)`
526 ///
527 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #6B8E23;"></div>
528 pub const OLIVEDRAB: Self = Self::new(107, 142, 35, 255);
529
530 /// `#FFA500 = rgb(255 165 0)`
531 ///
532 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFA500;"></div>
533 pub const ORANGE: Self = Self::new(255, 165, 0, 255);
534
535 /// `#FF4500 = rgb(255 69 0)`
536 ///
537 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FF4500;"></div>
538 pub const ORANGERED: Self = Self::new(255, 69, 0, 255);
539
540 /// `#DA70D6 = rgb(218 112 214)`
541 ///
542 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #DA70D6;"></div>
543 pub const ORCHID: Self = Self::new(218, 112, 214, 255);
544
545 /// `#EEE8AA = rgb(238 232 170)`
546 ///
547 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #EEE8AA;"></div>
548 pub const PALE_GOLDEN_ROD: Self = Self::new(238, 232, 170, 255);
549
550 /// `#98FB98 = rgb(152 251 152)`
551 ///
552 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #98FB98;"></div>
553 pub const PALE_GREEN: Self = Self::new(152, 251, 152, 255);
554
555 /// `#AFEEEE = rgb(175 238 238)`
556 ///
557 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #AFEEEE;"></div>
558 pub const PALE_TURQUOISE: Self = Self::new(175, 238, 238, 255);
559
560 /// `#DB7093 = rgb(219 112 147)`
561 ///
562 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #DB7093;"></div>
563 pub const PALE_VIOLET_RED: Self = Self::new(219, 112, 147, 255);
564
565 /// `#FFEFD5 = rgb(255 239 213)`
566 ///
567 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFEFD5;"></div>
568 pub const PAPAYAWHIP: Self = Self::new(255, 239, 213, 255);
569
570 /// `#FFDAB9 = rgb(255 218 185)`
571 ///
572 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFDAB9;"></div>
573 pub const PEACHPUFF: Self = Self::new(255, 218, 185, 255);
574
575 /// `#CD853F = rgb(205 133 63)`
576 ///
577 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #CD853F;"></div>
578 pub const PERU: Self = Self::new(205, 133, 63, 255);
579
580 /// `#FFC0CB = rgb(255 192 203)`
581 ///
582 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFC0CB;"></div>
583 pub const PINK: Self = Self::new(255, 192, 203, 255);
584
585 /// `#DDA0DD = rgb(221 160 221)`
586 ///
587 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #DDA0DD;"></div>
588 pub const PLUM: Self = Self::new(221, 160, 221, 255);
589
590 /// `#B0E0E6 = rgb(176 224 230)`
591 ///
592 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #B0E0E6;"></div>
593 pub const POWDER_BLUE: Self = Self::new(176, 224, 230, 255);
594
595 /// `#800080 = rgb(128 0 128)`
596 ///
597 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #800080;"></div>
598 pub const PURPLE: Self = Self::new(128, 0, 128, 255);
599
600 /// `#663399 = rgb(102 51 153)`
601 ///
602 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #663399;"></div>
603 pub const REBECCA_PURPLE: Self = Self::new(102, 51, 153, 255);
604
605 /// `#FF0000 = rgb(255 0 0)`
606 ///
607 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FF0000;"></div>
608 pub const RED: Self = Self::new(255, 0, 0, 255);
609
610 /// `#BC8F8F = rgb(188 143 143)`
611 ///
612 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #BC8F8F;"></div>
613 pub const ROSY_BROWN: Self = Self::new(188, 143, 143, 255);
614
615 /// `#4169E1 = rgb(65 105 225)`
616 ///
617 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #4169E1;"></div>
618 pub const ROYAL_BLUE: Self = Self::new(65, 105, 225, 255);
619
620 /// `#8B4513 = rgb(139 69 19)`
621 ///
622 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #8B4513;"></div>
623 pub const SADDLE_BROWN: Self = Self::new(139, 69, 19, 255);
624
625 /// `#FA8072 = rgb(250 128 114)`
626 ///
627 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FA8072;"></div>
628 pub const SALMON: Self = Self::new(250, 128, 114, 255);
629
630 /// `#F4A460 = rgb(244 164 96)`
631 ///
632 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F4A460;"></div>
633 pub const SANDY_BROWN: Self = Self::new(244, 164, 96, 255);
634
635 /// `#2E8B57 = rgb(46 139 87)`
636 ///
637 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #2E8B57;"></div>
638 pub const SEA_GREEN: Self = Self::new(46, 139, 87, 255);
639
640 /// `#FFF5EE = rgb(255 245 238)`
641 ///
642 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFF5EE;"></div>
643 pub const SEA_SHELL: Self = Self::new(255, 245, 238, 255);
644
645 /// `#A0522D = rgb(160 82 45)`
646 ///
647 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #A0522D;"></div>
648 pub const SIENNA: Self = Self::new(160, 82, 45, 255);
649
650 /// `#C0C0C0 = rgb(192 192 192)`
651 ///
652 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #C0C0C0;"></div>
653 pub const SILVER: Self = Self::new(192, 192, 192, 255);
654
655 /// `#87CEEB = rgb(135 206 235)`
656 ///
657 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #87CEEB;"></div>
658 pub const SKY_BLUE: Self = Self::new(135, 206, 235, 255);
659
660 /// `#6A5ACD = rgb(106 90 205)`
661 ///
662 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #6A5ACD;"></div>
663 pub const SLATE_BLUE: Self = Self::new(106, 90, 205, 255);
664
665 /// `#708090 = rgb(112 128 144)`
666 ///
667 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #708090;"></div>
668 pub const SLATE_GRAY: Self = Self::new(112, 128, 144, 255);
669
670 /// `#708090 = rgb(112 128 144)`
671 ///
672 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #708090;"></div>
673 pub const SLATE_GREY: Self = Self::new(112, 128, 144, 255);
674
675 /// `#FFFAFA = rgb(255 250 250)`
676 ///
677 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFFAFA;"></div>
678 pub const SNOW: Self = Self::new(255, 250, 250, 255);
679
680 /// `#00FF7F = rgb(0 255 127)`
681 ///
682 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #00FF7F;"></div>
683 pub const SPRING_GREEN: Self = Self::new(0, 255, 127, 255);
684
685 /// `#4682B4 = rgb(70 130 180)`
686 ///
687 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #4682B4;"></div>
688 pub const STEEL_BLUE: Self = Self::new(70, 130, 180, 255);
689
690 /// `#D2B48C = rgb(210 180 140)`
691 ///
692 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #D2B48C;"></div>
693 pub const TAN: Self = Self::new(210, 180, 140, 255);
694
695 /// `#008080 = rgb(0 128 128)`
696 ///
697 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #008080;"></div>
698 pub const TEAL: Self = Self::new(0, 128, 128, 255);
699
700 /// `#D8BFD8 = rgb(216 191 216)`
701 ///
702 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #D8BFD8;"></div>
703 pub const THISTLE: Self = Self::new(216, 191, 216, 255);
704
705 /// `#FF6347 = rgb(255 99 71)`
706 ///
707 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FF6347;"></div>
708 pub const TOMATO: Self = Self::new(255, 99, 71, 255);
709
710 /// `#40E0D0 = rgb(64 224 208)`
711 ///
712 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #40E0D0;"></div>
713 pub const TURQUOISE: Self = Self::new(64, 224, 208, 255);
714
715 /// `#EE82EE = rgb(238 130 238)`
716 ///
717 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #EE82EE;"></div>
718 pub const VIOLET: Self = Self::new(238, 130, 238, 255);
719
720 /// `#F5DEB3 = rgb(245 222 179)`
721 ///
722 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F5DEB3;"></div>
723 pub const WHEAT: Self = Self::new(245, 222, 179, 255);
724
725 /// `#FFFFFF = rgb(255 255 255)`
726 ///
727 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFFFFF;"></div>
728 pub const WHITE: Self = Self::new(255, 255, 255, 255);
729
730 /// `#F5F5F5 = rgb(245 245 245)`
731 ///
732 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #F5F5F5;"></div>
733 pub const WHITE_SMOKE: Self = Self::new(245, 245, 245, 255);
734
735 /// `#FFFF00 = rgb(255 255 0)`
736 ///
737 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #FFFF00;"></div>
738 pub const YELLOW: Self = Self::new(255, 255, 0, 255);
739
740 /// `#9ACD32 = rgb(154 205 50)`
741 ///
742 /// <div style="display: inline-block;width: 16rem;height: 1rem;border: 1px solid black;background: #9ACD32;"></div>
743 pub const YELLOW_GREEN: Self = Self::new(154, 205, 50, 255);
744}