zng_color/web_colors.rs
1//! Named web colors.
2
3use super::Rgba;
4
5macro_rules! rgb {
6 ($r:literal, $g:literal, $b:literal) => {
7 Rgba {
8 red: $r as f32 / 255.,
9 green: $g as f32 / 255.,
10 blue: $b as f32 / 255.,
11 alpha: 1.0,
12 }
13 };
14}
15
16/// <span style="display: inline-block; background-color:#E6E6FA; width:20px; height:20px;"></span> Lavender, `#E6E6FA`, `rgb(230, 230, 250)`.
17pub const LAVENDER: Rgba = rgb!(230, 230, 250);
18
19/// <span style="display: inline-block; background-color:#D8BFD8; width:20px; height:20px;"></span> Thistle, `#D8BFD8`, `rgb(216, 191, 216)`.
20pub const THISTLE: Rgba = rgb!(216, 191, 216);
21
22/// <span style="display: inline-block; background-color:#DDA0DD; width:20px; height:20px;"></span> Plum, `#DDA0DD`, `rgb(221, 160, 221)`.
23pub const PLUM: Rgba = rgb!(221, 160, 221);
24
25/// <span style="display: inline-block; background-color:#EE82EE; width:20px; height:20px;"></span> Violet, `#EE82EE`, `rgb(238, 130, 238)`.
26pub const VIOLET: Rgba = rgb!(238, 130, 238);
27
28/// <span style="display: inline-block; background-color:#DA70D6; width:20px; height:20px;"></span> Orchid, `#DA70D6`, `rgb(218, 112, 214)`.
29pub const ORCHID: Rgba = rgb!(218, 112, 214);
30
31/// <span style="display: inline-block; background-color:#FF00FF; width:20px; height:20px;"></span> Fuchsia, `#FF00FF`, `rgb(255, 0, 255)`.
32pub const FUCHSIA: Rgba = rgb!(255, 0, 255);
33
34/// <span style="display: inline-block; background-color:#FF00FF; width:20px; height:20px;"></span> Magenta, `#FF00FF`, `rgb(255, 0, 255)`.
35pub const MAGENTA: Rgba = rgb!(255, 0, 255);
36
37/// <span style="display: inline-block; background-color:#BA55D3; width:20px; height:20px;"></span> Medium Orchid, `#BA55D3`, `rgb(186, 85, 211)`.
38pub const MEDIUM_ORCHID: Rgba = rgb!(186, 85, 211);
39
40/// <span style="display: inline-block; background-color:#9370DB; width:20px; height:20px;"></span> Medium Purple, `#9370DB`, `rgb(147, 112, 219)`.
41pub const MEDIUM_PURPLE: Rgba = rgb!(147, 112, 219);
42
43/// <span style="display: inline-block; background-color:#8A2BE2; width:20px; height:20px;"></span> Blue Violet, `#8A2BE2`, `rgb(138, 43, 226)`.
44pub const BLUE_VIOLET: Rgba = rgb!(138, 43, 226);
45
46/// <span style="display: inline-block; background-color:#9400D3; width:20px; height:20px;"></span> Dark Violet, `#9400D3`, `rgb(148, 0, 211)`.
47pub const DARK_VIOLET: Rgba = rgb!(148, 0, 211);
48
49/// <span style="display: inline-block; background-color:#9932CC; width:20px; height:20px;"></span> Dark Orchid, `#9932CC`, `rgb(153, 50, 204)`.
50pub const DARK_ORCHID: Rgba = rgb!(153, 50, 204);
51
52/// <span style="display: inline-block; background-color:#8B008B; width:20px; height:20px;"></span> Dark Magenta, `#8B008B`, `rgb(139, 0, 139)`.
53pub const DARK_MAGENTA: Rgba = rgb!(139, 0, 139);
54
55/// <span style="display: inline-block; background-color:#800080; width:20px; height:20px;"></span> Purple, `#800080`, `rgb(128, 0, 128)`.
56pub const PURPLE: Rgba = rgb!(128, 0, 128);
57
58/// <span style="display: inline-block; background-color:#4B0082; width:20px; height:20px;"></span> Indigo, `#4B0082`, `rgb(75, 0, 130)`.
59pub const INDIGO: Rgba = rgb!(75, 0, 130);
60
61/// <span style="display: inline-block; background-color:#483D8B; width:20px; height:20px;"></span> Dark Slate Blue, `#483D8B`, `rgb(72, 61, 139)`.
62pub const DARK_SLATE_BLUE: Rgba = rgb!(72, 61, 139);
63
64/// <span style="display: inline-block; background-color:#6A5ACD; width:20px; height:20px;"></span> Slate Blue, `#6A5ACD`, `rgb(106, 90, 205)`.
65pub const SLATE_BLUE: Rgba = rgb!(106, 90, 205);
66
67/// <span style="display: inline-block; background-color:#7B68EE; width:20px; height:20px;"></span> Medium Slate Blue, `#7B68EE`, `rgb(123, 104, 238)`.
68pub const MEDIUM_SLATE_BLUE: Rgba = rgb!(123, 104, 238);
69
70/// <span style="display: inline-block; background-color:#FFC0CB; width:20px; height:20px;"></span> Pink, `#FFC0CB`, `rgb(255, 192, 203)`.
71pub const PINK: Rgba = rgb!(255, 192, 203);
72
73/// <span style="display: inline-block; background-color:#FFB6C1; width:20px; height:20px;"></span> Light Pink, `#FFB6C1`, `rgb(255, 182, 193)`.
74pub const LIGHT_PINK: Rgba = rgb!(255, 182, 193);
75
76/// <span style="display: inline-block; background-color:#FF69B4; width:20px; height:20px;"></span> Hot Pink, `#FF69B4`, `rgb(255, 105, 180)`.
77pub const HOT_PINK: Rgba = rgb!(255, 105, 180);
78
79/// <span style="display: inline-block; background-color:#FF1493; width:20px; height:20px;"></span> Deep Pink, `#FF1493`, `rgb(255, 20, 147)`.
80pub const DEEP_PINK: Rgba = rgb!(255, 20, 147);
81
82/// <span style="display: inline-block; background-color:#DB7093; width:20px; height:20px;"></span> Pale Violet Red, `#DB7093`, `rgb(219, 112, 147)`.
83pub const PALE_VIOLET_RED: Rgba = rgb!(219, 112, 147);
84
85/// <span style="display: inline-block; background-color:#C71585; width:20px; height:20px;"></span> Medium Violet Red, `#C71585`, `rgb(199, 21, 133)`.
86pub const MEDIUM_VIOLET_RED: Rgba = rgb!(199, 21, 133);
87
88/// <span style="display: inline-block; background-color:#FFA07A; width:20px; height:20px;"></span> Light Salmon, `#FFA07A`, `rgb(255, 160, 122)`.
89pub const LIGHT_SALMON: Rgba = rgb!(255, 160, 122);
90
91/// <span style="display: inline-block; background-color:#FA8072; width:20px; height:20px;"></span> Salmon, `#FA8072`, `rgb(250, 128, 114)`.
92pub const SALMON: Rgba = rgb!(250, 128, 114);
93
94/// <span style="display: inline-block; background-color:#E9967A; width:20px; height:20px;"></span> Dark Salmon, `#E9967A`, `rgb(233, 150, 122)`.
95pub const DARK_SALMON: Rgba = rgb!(233, 150, 122);
96
97/// <span style="display: inline-block; background-color:#F08080; width:20px; height:20px;"></span> Light Coral, `#F08080`, `rgb(240, 128, 128)`.
98pub const LIGHT_CORAL: Rgba = rgb!(240, 128, 128);
99
100/// <span style="display: inline-block; background-color:#CD5C5C; width:20px; height:20px;"></span> Indian Red, `#CD5C5C`, `rgb(205, 92, 92)`.
101pub const INDIAN_RED: Rgba = rgb!(205, 92, 92);
102
103/// <span style="display: inline-block; background-color:#DC143C; width:20px; height:20px;"></span> Crimson, `#DC143C`, `rgb(220, 20, 60)`.
104pub const CRIMSON: Rgba = rgb!(220, 20, 60);
105
106/// <span style="display: inline-block; background-color:#B22222; width:20px; height:20px;"></span> Fire Brick, `#B22222`, `rgb(178, 34, 34)`.
107pub const FIRE_BRICK: Rgba = rgb!(178, 34, 34);
108
109/// <span style="display: inline-block; background-color:#8B0000; width:20px; height:20px;"></span> Dark Red, `#8B0000`, `rgb(139, 0, 0)`.
110pub const DARK_RED: Rgba = rgb!(139, 0, 0);
111
112/// <span style="display: inline-block; background-color:#FF0000; width:20px; height:20px;"></span> Red, `#FF0000`, `rgb(255, 0, 0)`.
113pub const RED: Rgba = rgb!(255, 0, 0);
114
115/// <span style="display: inline-block; background-color:#FF4500; width:20px; height:20px;"></span> Orange Red, `#FF4500`, `rgb(255, 69, 0)`.
116pub const ORANGE_RED: Rgba = rgb!(255, 69, 0);
117
118/// <span style="display: inline-block; background-color:#FF6347; width:20px; height:20px;"></span> Tomato, `#FF6347`, `rgb(255, 99, 71)`.
119pub const TOMATO: Rgba = rgb!(255, 99, 71);
120
121/// <span style="display: inline-block; background-color:#FF7F50; width:20px; height:20px;"></span> Coral, `#FF7F50`, `rgb(255, 127, 80)`.
122pub const CORAL: Rgba = rgb!(255, 127, 80);
123
124/// <span style="display: inline-block; background-color:#FF8C00; width:20px; height:20px;"></span> Dark Orange, `#FF8C00`, `rgb(255, 140, 0)`.
125pub const DARK_ORANGE: Rgba = rgb!(255, 140, 0);
126
127/// <span style="display: inline-block; background-color:#FFA500; width:20px; height:20px;"></span> Orange, `#FFA500`, `rgb(255, 165, 0)`.
128pub const ORANGE: Rgba = rgb!(255, 165, 0);
129
130/// <span style="display: inline-block; background-color:#FFFF00; width:20px; height:20px;"></span> Yellow, `#FFFF00`, `rgb(255, 255, 0)`.
131pub const YELLOW: Rgba = rgb!(255, 255, 0);
132
133/// <span style="display: inline-block; background-color:#FFFFE0; width:20px; height:20px;"></span> Light Yellow, `#FFFFE0`, `rgb(255, 255, 224)`.
134pub const LIGHT_YELLOW: Rgba = rgb!(255, 255, 224);
135
136/// <span style="display: inline-block; background-color:#FFFACD; width:20px; height:20px;"></span> Lemon Chiffon, `#FFFACD`, `rgb(255, 250, 205)`.
137pub const LEMON_CHIFFON: Rgba = rgb!(255, 250, 205);
138
139/// <span style="display: inline-block; background-color:#FAFAD2; width:20px; height:20px;"></span> Light Goldenrod Yellow, `#FAFAD2`, `rgb(250, 250, 210)`.
140pub const LIGHT_GOLDENROD_YELLOW: Rgba = rgb!(250, 250, 210);
141
142/// <span style="display: inline-block; background-color:#FFEFD5; width:20px; height:20px;"></span> Papaya Whip, `#FFEFD5`, `rgb(255, 239, 213)`.
143pub const PAPAYA_WHIP: Rgba = rgb!(255, 239, 213);
144
145/// <span style="display: inline-block; background-color:#FFE4B5; width:20px; height:20px;"></span> Moccasin, `#FFE4B5`, `rgb(255, 228, 181)`.
146pub const MOCCASIN: Rgba = rgb!(255, 228, 181);
147
148/// <span style="display: inline-block; background-color:#FFDAB9; width:20px; height:20px;"></span> Peach Puff, `#FFDAB9`, `rgb(255, 218, 185)`.
149pub const PEACH_PUFF: Rgba = rgb!(255, 218, 185);
150
151/// <span style="display: inline-block; background-color:#EEE8AA; width:20px; height:20px;"></span> Pale Goldenrod, `#EEE8AA`, `rgb(238, 232, 170)`.
152pub const PALE_GOLDENROD: Rgba = rgb!(238, 232, 170);
153
154/// <span style="display: inline-block; background-color:#F0E68C; width:20px; height:20px;"></span> Khaki, `#F0E68C`, `rgb(240, 230, 140)`.
155pub const KHAKI: Rgba = rgb!(240, 230, 140);
156
157/// <span style="display: inline-block; background-color:#BDB76B; width:20px; height:20px;"></span> Dark Khaki, `#BDB76B`, `rgb(189, 183, 107)`.
158pub const DARK_KHAKI: Rgba = rgb!(189, 183, 107);
159
160/// <span style="display: inline-block; background-color:#FFD700; width:20px; height:20px;"></span> Gold, `#FFD700`, `rgb(255, 215, 0)`.
161pub const GOLD: Rgba = rgb!(255, 215, 0);
162
163/// <span style="display: inline-block; background-color:#FFF8DC; width:20px; height:20px;"></span> Cornsilk, `#FFF8DC`, `rgb(255, 248, 220)`.
164pub const CORNSILK: Rgba = rgb!(255, 248, 220);
165
166/// <span style="display: inline-block; background-color:#FFEBCD; width:20px; height:20px;"></span> Blanched Almond, `#FFEBCD`, `rgb(255, 235, 205)`.
167pub const BLANCHED_ALMOND: Rgba = rgb!(255, 235, 205);
168
169/// <span style="display: inline-block; background-color:#FFE4C4; width:20px; height:20px;"></span> Bisque, `#FFE4C4`, `rgb(255, 228, 196)`.
170pub const BISQUE: Rgba = rgb!(255, 228, 196);
171
172/// <span style="display: inline-block; background-color:#FFDEAD; width:20px; height:20px;"></span> Navajo White, `#FFDEAD`, `rgb(255, 222, 173)`.
173pub const NAVAJO_WHITE: Rgba = rgb!(255, 222, 173);
174
175/// <span style="display: inline-block; background-color:#F5DEB3; width:20px; height:20px;"></span> Wheat, `#F5DEB3`, `rgb(245, 222, 179)`.
176pub const WHEAT: Rgba = rgb!(245, 222, 179);
177
178/// <span style="display: inline-block; background-color:#DEB887; width:20px; height:20px;"></span> Burly Wood, `#DEB887`, `rgb(222, 184, 135)`.
179pub const BURLY_WOOD: Rgba = rgb!(222, 184, 135);
180
181/// <span style="display: inline-block; background-color:#D2B48C; width:20px; height:20px;"></span> Tan, `#D2B48C`, `rgb(210, 180, 140)`.
182pub const TAN: Rgba = rgb!(210, 180, 140);
183
184/// <span style="display: inline-block; background-color:#BC8F8F; width:20px; height:20px;"></span> Rosy Brown, `#BC8F8F`, `rgb(188, 143, 143)`.
185pub const ROSY_BROWN: Rgba = rgb!(188, 143, 143);
186
187/// <span style="display: inline-block; background-color:#F4A460; width:20px; height:20px;"></span> Sandy Brown, `#F4A460`, `rgb(244, 164, 96)`.
188pub const SANDY_BROWN: Rgba = rgb!(244, 164, 96);
189
190/// <span style="display: inline-block; background-color:#DAA520; width:20px; height:20px;"></span> Goldenrod, `#DAA520`, `rgb(218, 165, 32)`.
191pub const GOLDENROD: Rgba = rgb!(218, 165, 32);
192
193/// <span style="display: inline-block; background-color:#B8860B; width:20px; height:20px;"></span> Dark Goldenrod, `#B8860B`, `rgb(184, 134, 11)`.
194pub const DARK_GOLDENROD: Rgba = rgb!(184, 134, 11);
195
196/// <span style="display: inline-block; background-color:#CD853F; width:20px; height:20px;"></span> Peru, `#CD853F`, `rgb(205, 133, 63)`.
197pub const PERU: Rgba = rgb!(205, 133, 63);
198
199/// <span style="display: inline-block; background-color:#D2691E; width:20px; height:20px;"></span> Chocolate, `#D2691E`, `rgb(210, 105, 30)`.
200pub const CHOCOLATE: Rgba = rgb!(210, 105, 30);
201
202/// <span style="display: inline-block; background-color:#8B4513; width:20px; height:20px;"></span> Saddle Brown, `#8B4513`, `rgb(139, 69, 19)`.
203pub const SADDLE_BROWN: Rgba = rgb!(139, 69, 19);
204
205/// <span style="display: inline-block; background-color:#A0522D; width:20px; height:20px;"></span> Sienna, `#A0522D`, `rgb(160, 82, 45)`.
206pub const SIENNA: Rgba = rgb!(160, 82, 45);
207
208/// <span style="display: inline-block; background-color:#A52A2A; width:20px; height:20px;"></span> Brown, `#A52A2A`, `rgb(165, 42, 42)`.
209pub const BROWN: Rgba = rgb!(165, 42, 42);
210
211/// <span style="display: inline-block; background-color:#800000; width:20px; height:20px;"></span> Maroon, `#800000`, `rgb(128, 0, 0)`.
212pub const MAROON: Rgba = rgb!(128, 0, 0);
213
214/// <span style="display: inline-block; background-color:#556B2F; width:20px; height:20px;"></span> Dark Olive Green, `#556B2F`, `rgb(85, 107, 47)`.
215pub const DARK_OLIVE_GREEN: Rgba = rgb!(85, 107, 47);
216
217/// <span style="display: inline-block; background-color:#808000; width:20px; height:20px;"></span> Olive, `#808000`, `rgb(128, 128, 0)`.
218pub const OLIVE: Rgba = rgb!(128, 128, 0);
219
220/// <span style="display: inline-block; background-color:#6B8E23; width:20px; height:20px;"></span> Olive Drab, `#6B8E23`, `rgb(107, 142, 35)`.
221pub const OLIVE_DRAB: Rgba = rgb!(107, 142, 35);
222
223/// <span style="display: inline-block; background-color:#9ACD32; width:20px; height:20px;"></span> Yellow Green, `#9ACD32`, `rgb(154, 205, 50)`.
224pub const YELLOW_GREEN: Rgba = rgb!(154, 205, 50);
225
226/// <span style="display: inline-block; background-color:#32CD32; width:20px; height:20px;"></span> Lime Green, `#32CD32`, `rgb(50, 205, 50)`.
227pub const LIME_GREEN: Rgba = rgb!(50, 205, 50);
228
229/// <span style="display: inline-block; background-color:#00FF00; width:20px; height:20px;"></span> Lime, `#00FF00`, `rgb(0, 255, 0)`.
230pub const LIME: Rgba = rgb!(0, 255, 0);
231
232/// <span style="display: inline-block; background-color:#7CFC00; width:20px; height:20px;"></span> Lawn Green, `#7CFC00`, `rgb(124, 252, 0)`.
233pub const LAWN_GREEN: Rgba = rgb!(124, 252, 0);
234
235/// <span style="display: inline-block; background-color:#7FFF00; width:20px; height:20px;"></span> Chartreuse, `#7FFF00`, `rgb(127, 255, 0)`.
236pub const CHARTREUSE: Rgba = rgb!(127, 255, 0);
237
238/// <span style="display: inline-block; background-color:#ADFF2F; width:20px; height:20px;"></span> Green Yellow, `#ADFF2F`, `rgb(173, 255, 47)`.
239pub const GREEN_YELLOW: Rgba = rgb!(173, 255, 47);
240
241/// <span style="display: inline-block; background-color:#00FF7F; width:20px; height:20px;"></span> Spring Green, `#00FF7F`, `rgb(0, 255, 127)`.
242pub const SPRING_GREEN: Rgba = rgb!(0, 255, 127);
243
244/// <span style="display: inline-block; background-color:#00FA9A; width:20px; height:20px;"></span> Medium Spring Green, `#00FA9A`, `rgb(0, 250, 154)`.
245pub const MEDIUM_SPRING_GREEN: Rgba = rgb!(0, 250, 154);
246
247/// <span style="display: inline-block; background-color:#90EE90; width:20px; height:20px;"></span> Light Green, `#90EE90`, `rgb(144, 238, 144)`.
248pub const LIGHT_GREEN: Rgba = rgb!(144, 238, 144);
249
250/// <span style="display: inline-block; background-color:#98FB98; width:20px; height:20px;"></span> Pale Green, `#98FB98`, `rgb(152, 251, 152)`.
251pub const PALE_GREEN: Rgba = rgb!(152, 251, 152);
252
253/// <span style="display: inline-block; background-color:#8FBC8F; width:20px; height:20px;"></span> Dark Sea Green, `#8FBC8F`, `rgb(143, 188, 143)`.
254pub const DARK_SEA_GREEN: Rgba = rgb!(143, 188, 143);
255
256/// <span style="display: inline-block; background-color:#3CB371; width:20px; height:20px;"></span> Medium Sea Green, `#3CB371`, `rgb(60, 179, 113)`.
257pub const MEDIUM_SEA_GREEN: Rgba = rgb!(60, 179, 113);
258
259/// <span style="display: inline-block; background-color:#2E8B57; width:20px; height:20px;"></span> Sea Green, `#2E8B57`, `rgb(46, 139, 87)`.
260pub const SEA_GREEN: Rgba = rgb!(46, 139, 87);
261
262/// <span style="display: inline-block; background-color:#228B22; width:20px; height:20px;"></span> Forest Green, `#228B22`, `rgb(34, 139, 34)`.
263pub const FOREST_GREEN: Rgba = rgb!(34, 139, 34);
264
265/// <span style="display: inline-block; background-color:#008000; width:20px; height:20px;"></span> Green, `#008000`, `rgb(0, 128, 0)`.
266pub const GREEN: Rgba = rgb!(0, 128, 0);
267
268/// <span style="display: inline-block; background-color:#006400; width:20px; height:20px;"></span> Dark Green, `#006400`, `rgb(0, 100, 0)`.
269pub const DARK_GREEN: Rgba = rgb!(0, 100, 0);
270
271/// <span style="display: inline-block; background-color:#66CDAA; width:20px; height:20px;"></span> Medium Aquamarine, `#66CDAA`, `rgb(102, 205, 170)`.
272pub const MEDIUM_AQUAMARINE: Rgba = rgb!(102, 205, 170);
273
274/// <span style="display: inline-block; background-color:#00FFFF; width:20px; height:20px;"></span> Aqua, `#00FFFF`, `rgb(0, 255, 255)`.
275pub const AQUA: Rgba = rgb!(0, 255, 255);
276
277/// <span style="display: inline-block; background-color:#00FFFF; width:20px; height:20px;"></span> Cyan, `#00FFFF`, `rgb(0, 255, 255)`.
278pub const CYAN: Rgba = rgb!(0, 255, 255);
279
280/// <span style="display: inline-block; background-color:#E0FFFF; width:20px; height:20px;"></span> Light Cyan, `#E0FFFF`, `rgb(224, 255, 255)`.
281pub const LIGHT_CYAN: Rgba = rgb!(224, 255, 255);
282
283/// <span style="display: inline-block; background-color:#AFEEEE; width:20px; height:20px;"></span> Pale Turquoise, `#AFEEEE`, `rgb(175, 238, 238)`.
284pub const PALE_TURQUOISE: Rgba = rgb!(175, 238, 238);
285
286/// <span style="display: inline-block; background-color:#7FFFD4; width:20px; height:20px;"></span> Aquamarine, `#7FFFD4`, `rgb(127, 255, 212)`.
287pub const AQUAMARINE: Rgba = rgb!(127, 255, 212);
288
289/// <span style="display: inline-block; background-color:#40E0D0; width:20px; height:20px;"></span> Turquoise, `#40E0D0`, `rgb(64, 224, 208)`.
290pub const TURQUOISE: Rgba = rgb!(64, 224, 208);
291
292/// <span style="display: inline-block; background-color:#48D1CC; width:20px; height:20px;"></span> Medium Turquoise, `#48D1CC`, `rgb(72, 209, 204)`.
293pub const MEDIUM_TURQUOISE: Rgba = rgb!(72, 209, 204);
294
295/// <span style="display: inline-block; background-color:#00CED1; width:20px; height:20px;"></span> Dark Turquoise, `#00CED1`, `rgb(0, 206, 209)`.
296pub const DARK_TURQUOISE: Rgba = rgb!(0, 206, 209);
297
298/// <span style="display: inline-block; background-color:#20B2AA; width:20px; height:20px;"></span> Light Sea Green, `#20B2AA`, `rgb(32, 178, 170)`.
299pub const LIGHT_SEA_GREEN: Rgba = rgb!(32, 178, 170);
300
301/// <span style="display: inline-block; background-color:#5F9EA0; width:20px; height:20px;"></span> Cadet Blue, `#5F9EA0`, `rgb(95, 158, 160)`.
302pub const CADET_BLUE: Rgba = rgb!(95, 158, 160);
303
304/// <span style="display: inline-block; background-color:#008B8B; width:20px; height:20px;"></span> Dark Cyan, `#008B8B`, `rgb(0, 139, 139)`.
305pub const DARK_CYAN: Rgba = rgb!(0, 139, 139);
306
307/// <span style="display: inline-block; background-color:#008080; width:20px; height:20px;"></span> Teal, `#008080`, `rgb(0, 128, 128)`.
308pub const TEAL: Rgba = rgb!(0, 128, 128);
309
310/// <span style="display: inline-block; background-color:#B0C4DE; width:20px; height:20px;"></span> Light Steel Blue, `#B0C4DE`, `rgb(176, 196, 222)`.
311pub const LIGHT_STEEL_BLUE: Rgba = rgb!(176, 196, 222);
312
313/// <span style="display: inline-block; background-color:#B0E0E6; width:20px; height:20px;"></span> Powder Blue, `#B0E0E6`, `rgb(176, 224, 230)`.
314pub const POWDER_BLUE: Rgba = rgb!(176, 224, 230);
315
316/// <span style="display: inline-block; background-color:#ADD8E6; width:20px; height:20px;"></span> Light Blue, `#ADD8E6`, `rgb(173, 216, 230)`.
317pub const LIGHT_BLUE: Rgba = rgb!(173, 216, 230);
318
319/// <span style="display: inline-block; background-color:#87CEEB; width:20px; height:20px;"></span> Sky Blue, `#87CEEB`, `rgb(135, 206, 235)`.
320pub const SKY_BLUE: Rgba = rgb!(135, 206, 235);
321
322/// <span style="display: inline-block; background-color:#87CEFA; width:20px; height:20px;"></span> Light Sky Blue, `#87CEFA`, `rgb(135, 206, 250)`.
323pub const LIGHT_SKY_BLUE: Rgba = rgb!(135, 206, 250);
324
325/// <span style="display: inline-block; background-color:#00BFFF; width:20px; height:20px;"></span> Deep Sky Blue, `#00BFFF`, `rgb(0, 191, 255)`.
326pub const DEEP_SKY_BLUE: Rgba = rgb!(0, 191, 255);
327
328/// <span style="display: inline-block; background-color:#1E90FF; width:20px; height:20px;"></span> Dodger Blue, `#1E90FF`, `rgb(30, 144, 255)`.
329pub const DODGER_BLUE: Rgba = rgb!(30, 144, 255);
330
331/// <span style="display: inline-block; background-color:#6495ED; width:20px; height:20px;"></span> Cornflower Blue, `#6495ED`, `rgb(100, 149, 237)`.
332pub const CORNFLOWER_BLUE: Rgba = rgb!(100, 149, 237);
333
334/// <span style="display: inline-block; background-color:#4682B4; width:20px; height:20px;"></span> Steel Blue, `#4682B4`, `rgb(70, 130, 180)`.
335pub const STEEL_BLUE: Rgba = rgb!(70, 130, 180);
336
337/// <span style="display: inline-block; background-color:#4169E1; width:20px; height:20px;"></span> Royal Blue, `#4169E1`, `rgb(65, 105, 225)`.
338pub const ROYAL_BLUE: Rgba = rgb!(65, 105, 225);
339
340/// <span style="display: inline-block; background-color:#0000FF; width:20px; height:20px;"></span> Blue, `#0000FF`, `rgb(0, 0, 255)`.
341pub const BLUE: Rgba = rgb!(0, 0, 255);
342
343/// <span style="display: inline-block; background-color:#0000CD; width:20px; height:20px;"></span> Medium Blue, `#0000CD`, `rgb(0, 0, 205)`.
344pub const MEDIUM_BLUE: Rgba = rgb!(0, 0, 205);
345
346/// <span style="display: inline-block; background-color:#00008B; width:20px; height:20px;"></span> Dark Blue, `#00008B`, `rgb(0, 0, 139)`.
347pub const DARK_BLUE: Rgba = rgb!(0, 0, 139);
348
349/// <span style="display: inline-block; background-color:#000080; width:20px; height:20px;"></span> Navy, `#000080`, `rgb(0, 0, 128)`.
350pub const NAVY: Rgba = rgb!(0, 0, 128);
351
352/// <span style="display: inline-block; background-color:#191970; width:20px; height:20px;"></span> Midnight Blue, `#191970`, `rgb(25, 25, 112)`.
353pub const MIDNIGHT_BLUE: Rgba = rgb!(25, 25, 112);
354
355/// <span style="display: inline-block; background-color:#FFFFFF; width:20px; height:20px;"></span> White, `#FFFFFF`, `rgb(255, 255, 255)`.
356pub const WHITE: Rgba = rgb!(255, 255, 255);
357
358/// <span style="display: inline-block; background-color:#FFFAFA; width:20px; height:20px;"></span> Snow, `#FFFAFA`, `rgb(255, 250, 250)`.
359pub const SNOW: Rgba = rgb!(255, 250, 250);
360
361/// <span style="display: inline-block; background-color:#F0FFF0; width:20px; height:20px;"></span> Honeydew, `#F0FFF0`, `rgb(240, 255, 240)`.
362pub const HONEYDEW: Rgba = rgb!(240, 255, 240);
363
364/// <span style="display: inline-block; background-color:#F5FFFA; width:20px; height:20px;"></span> Mint Cream, `#F5FFFA`, `rgb(245, 255, 250)`.
365pub const MINT_CREAM: Rgba = rgb!(245, 255, 250);
366
367/// <span style="display: inline-block; background-color:#F0FFFF; width:20px; height:20px;"></span> Azure, `#F0FFFF`, `rgb(240, 255, 255)`.
368pub const AZURE: Rgba = rgb!(240, 255, 255);
369
370/// <span style="display: inline-block; background-color:#F0F8FF; width:20px; height:20px;"></span> Alice Blue, `#F0F8FF`, `rgb(240, 248, 255)`.
371pub const ALICE_BLUE: Rgba = rgb!(240, 248, 255);
372
373/// <span style="display: inline-block; background-color:#F8F8FF; width:20px; height:20px;"></span> Ghost White, `#F8F8FF`, `rgb(248, 248, 255)`.
374pub const GHOST_WHITE: Rgba = rgb!(248, 248, 255);
375
376/// <span style="display: inline-block; background-color:#F5F5F5; width:20px; height:20px;"></span> White Smoke, `#F5F5F5`, `rgb(245, 245, 245)`.
377pub const WHITE_SMOKE: Rgba = rgb!(245, 245, 245);
378
379/// <span style="display: inline-block; background-color:#FFF5EE; width:20px; height:20px;"></span> Seashell, `#FFF5EE`, `rgb(255, 245, 238)`.
380pub const SEASHELL: Rgba = rgb!(255, 245, 238);
381
382/// <span style="display: inline-block; background-color:#F5F5DC; width:20px; height:20px;"></span> Beige, `#F5F5DC`, `rgb(245, 245, 220)`.
383pub const BEIGE: Rgba = rgb!(245, 245, 220);
384
385/// <span style="display: inline-block; background-color:#FDF5E6; width:20px; height:20px;"></span> Old Lace, `#FDF5E6`, `rgb(253, 245, 230)`.
386pub const OLD_LACE: Rgba = rgb!(253, 245, 230);
387
388/// <span style="display: inline-block; background-color:#FFFAF0; width:20px; height:20px;"></span> Floral White, `#FFFAF0`, `rgb(255, 250, 240)`.
389pub const FLORAL_WHITE: Rgba = rgb!(255, 250, 240);
390
391/// <span style="display: inline-block; background-color:#FFFFF0; width:20px; height:20px;"></span> Ivory, `#FFFFF0`, `rgb(255, 255, 240)`.
392pub const IVORY: Rgba = rgb!(255, 255, 240);
393
394/// <span style="display: inline-block; background-color:#FAEBD7; width:20px; height:20px;"></span> Antique White, `#FAEBD7`, `rgb(250, 235, 215)`.
395pub const ANTIQUE_WHITE: Rgba = rgb!(250, 235, 215);
396
397/// <span style="display: inline-block; background-color:#FAF0E6; width:20px; height:20px;"></span> Linen, `#FAF0E6`, `rgb(250, 240, 230)`.
398pub const LINEN: Rgba = rgb!(250, 240, 230);
399
400/// <span style="display: inline-block; background-color:#FFF0F5; width:20px; height:20px;"></span> Lavender Blush, `#FFF0F5`, `rgb(255, 240, 245)`.
401pub const LAVENDER_BLUSH: Rgba = rgb!(255, 240, 245);
402
403/// <span style="display: inline-block; background-color:#FFE4E1; width:20px; height:20px;"></span> Misty Rose, `#FFE4E1`, `rgb(255, 228, 225)`.
404pub const MISTY_ROSE: Rgba = rgb!(255, 228, 225);
405
406/// <span style="display: inline-block; background-color:#DCDCDC; width:20px; height:20px;"></span> Gainsboro, `#DCDCDC`, `rgb(220, 220, 220)`.
407pub const GAINSBORO: Rgba = rgb!(220, 220, 220);
408
409/// <span style="display: inline-block; background-color:#D3D3D3; width:20px; height:20px;"></span> Light Gray, `#D3D3D3`, `rgb(211, 211, 211)`.
410pub const LIGHT_GRAY: Rgba = rgb!(211, 211, 211);
411
412/// <span style="display: inline-block; background-color:#C0C0C0; width:20px; height:20px;"></span> Silver, `#C0C0C0`, `rgb(192, 192, 192)`.
413pub const SILVER: Rgba = rgb!(192, 192, 192);
414
415/// <span style="display: inline-block; background-color:#A9A9A9; width:20px; height:20px;"></span> Dark Gray, `#A9A9A9`, `rgb(169, 169, 169)`.
416pub const DARK_GRAY: Rgba = rgb!(169, 169, 169);
417
418/// <span style="display: inline-block; background-color:#808080; width:20px; height:20px;"></span> Gray, `#808080`, `rgb(128, 128, 128)`.
419pub const GRAY: Rgba = rgb!(128, 128, 128);
420
421/// <span style="display: inline-block; background-color:#696969; width:20px; height:20px;"></span> Dim Gray, `#696969`, `rgb(105, 105, 105)`.
422pub const DIM_GRAY: Rgba = rgb!(105, 105, 105);
423
424/// <span style="display: inline-block; background-color:#778899; width:20px; height:20px;"></span> Light Slate Gray, `#778899`, `rgb(119, 136, 153)`.
425pub const LIGHT_SLATE_GRAY: Rgba = rgb!(119, 136, 153);
426
427/// <span style="display: inline-block; background-color:#708090; width:20px; height:20px;"></span> Slate Gray, `#708090`, `rgb(112, 128, 144)`.
428pub const SLATE_GRAY: Rgba = rgb!(112, 128, 144);
429
430/// <span style="display: inline-block; background-color:#2F4F4F; width:20px; height:20px;"></span> Dark Slate Gray, `#2F4F4F`, `rgb(47, 79, 79)`.
431pub const DARK_SLATE_GRAY: Rgba = rgb!(47, 79, 79);
432
433/// <span style="display: inline-block; background-color:#000000; width:20px; height:20px;"></span> Black, `#000000`, `rgb(0, 0, 0)`.
434pub const BLACK: Rgba = rgb!(0, 0, 0);