1use iced_core::Color;
9
10pub const PRIMARY: Color = DODGER_BLUE;
12
13pub const SECONDARY: Color = DIM_GRAY;
15
16pub const SUCCESS: Color = LIME_GREEN;
18
19pub const DANGER: Color = RED;
21
22pub const WARNING: Color = GOLD;
24
25pub const INFO: Color = SKY_BLUE;
27
28pub const LIGHT: Color = GHOST_WHITE;
30
31pub const DARK: Color = Color::from_rgb(0.204, 0.227, 0.251);
33
34pub const ALICE_BLUE: Color = Color::from_rgb(0.941, 0.973, 1.0);
36
37pub const ANTIQUE_WHITE: Color = Color::from_rgb(0.98, 0.922, 0.843);
39
40pub const AQUA: Color = Color::from_rgb(0.0, 1.0, 1.0);
42
43pub const AQUAMARINE: Color = Color::from_rgb(0.498, 1.0, 0.831);
45
46pub const AZURE: Color = Color::from_rgb(0.941, 1.0, 1.0);
48
49pub const BEIGE: Color = Color::from_rgb(0.961, 0.961, 0.863);
51
52pub const BISQUE: Color = Color::from_rgb(1.0, 0.894, 0.769);
54
55pub const BLACK: Color = Color::BLACK;
57
58pub const BLANCHED_ALMOND: Color = Color::from_rgb(1.0, 0.922, 0.804);
60
61pub const BLUE: Color = Color::from_rgb(0.0, 0.0, 1.0);
63
64pub const BLUE_VIOLET: Color = Color::from_rgb(0.541, 0.169, 0.886);
66
67pub const BROWN: Color = Color::from_rgb(0.647, 0.165, 0.165);
69
70pub const BURLY_WOOD: Color = Color::from_rgb(0.871, 0.722, 0.529);
72
73pub const CADET_BLUE: Color = Color::from_rgb(0.373, 0.62, 0.627);
75
76pub const CHARTREUSE: Color = Color::from_rgb(0.498, 1.0, 0.0);
78
79pub const CHOCOLATE: Color = Color::from_rgb(0.824, 0.412, 0.118);
81
82pub const CORAL: Color = Color::from_rgb(1.0, 0.498, 0.314);
84
85pub const CORNFLOWER_BLUE: Color = Color::from_rgb(0.392, 0.584, 0.929);
87
88pub const CORNSILK: Color = Color::from_rgb(1.0, 0.973, 0.863);
90
91pub const CRIMSON: Color = Color::from_rgb(0.863, 0.078, 0.235);
93
94pub const CYAN: Color = Color::from_rgb(0.0, 1.0, 1.0);
96
97pub const DARK_BLUE: Color = Color::from_rgb(0.0, 0.0, 0.545);
99
100pub const DARK_CYAN: Color = Color::from_rgb(0.0, 0.545, 0.545);
102
103pub const DARK_GOLDEN_ROD: Color = Color::from_rgb(0.722, 0.525, 0.043);
105
106pub const DARK_GRAY: Color = Color::from_rgb(0.663, 0.663, 0.663);
108
109pub const DARK_GREY: Color = DARK_GRAY;
111
112pub const DARK_GREEN: Color = Color::from_rgb(0.0, 0.392, 0.0);
114
115pub const DARK_KHAKI: Color = Color::from_rgb(0.741, 0.718, 0.42);
117
118pub const DARK_MAGENTA: Color = Color::from_rgb(0.545, 0.0, 0.545);
120
121pub const DARK_OLIVE_GREEN: Color = Color::from_rgb(0.333, 0.42, 0.184);
123
124pub const DARK_ORANGE: Color = Color::from_rgb(1.0, 0.549, 0.0);
126
127pub const DARK_ORCHID: Color = Color::from_rgb(0.6, 0.196, 0.8);
129
130pub const DARK_RED: Color = Color::from_rgb(0.545, 0.0, 0.0);
132
133pub const DARK_SALMON: Color = Color::from_rgb(0.914, 0.588, 0.478);
135
136pub const DARK_SEA_GREEN: Color = Color::from_rgb(0.561, 0.737, 0.561);
138
139pub const DARK_SLATE_BLUE: Color = Color::from_rgb(0.282, 0.239, 0.545);
141
142pub const DARK_SLATE_GRAY: Color = Color::from_rgb(0.184, 0.31, 0.31);
144
145pub const DARK_SLATE_GREY: Color = DARK_SLATE_GRAY;
147
148pub const DARK_TURQUOISE: Color = Color::from_rgb(0.0, 0.808, 0.82);
150
151pub const DARK_VIOLET: Color = Color::from_rgb(0.58, 0.0, 0.827);
153
154pub const DEEP_PINK: Color = Color::from_rgb(1.0, 0.078, 0.576);
156
157pub const DEEP_SKY_BLUE: Color = Color::from_rgb(0.0, 0.749, 1.0);
159
160pub const DIM_GRAY: Color = Color::from_rgb(0.412, 0.412, 0.412);
162
163pub const DIM_GREY: Color = DIM_GRAY;
165
166pub const DODGER_BLUE: Color = Color::from_rgb(0.118, 0.565, 1.0);
168
169pub const FIRE_BRICK: Color = Color::from_rgb(0.698, 0.133, 0.133);
171
172pub const FLORAL_WHITE: Color = Color::from_rgb(1.0, 0.98, 0.941);
174
175pub const FOREST_GREEN: Color = Color::from_rgb(0.133, 0.545, 0.133);
177
178pub const FUCHSIA: Color = Color::from_rgb(1.0, 0.0, 1.0);
180
181pub const GAINSBORO: Color = Color::from_rgb(0.863, 0.863, 0.863);
183
184pub const GHOST_WHITE: Color = Color::from_rgb(0.973, 0.973, 1.0);
186
187pub const GOLD: Color = Color::from_rgb(1.0, 0.843, 0.0);
189
190pub const GOLDEN_ROD: Color = Color::from_rgb(0.855, 0.647, 0.125);
192
193pub const GRAY: Color = Color::from_rgb(0.502, 0.502, 0.502);
195
196pub const GREY: Color = GRAY;
198
199pub const GREEN: Color = Color::from_rgb(0.0, 0.502, 0.0);
201
202pub const GREEN_YELLOW: Color = Color::from_rgb(0.678, 1.0, 0.184);
204
205pub const HONEY_DEW: Color = Color::from_rgb(0.941, 1.0, 0.941);
207
208pub const HOT_PINK: Color = Color::from_rgb(1.0, 0.412, 0.706);
210
211pub const INDIAN_RED: Color = Color::from_rgb(0.804, 0.361, 0.361);
213
214pub const INDIGO: Color = Color::from_rgb(0.294, 0.0, 0.51);
216
217pub const IVORY: Color = Color::from_rgb(1.0, 1.0, 0.941);
219
220pub const KHAKI: Color = Color::from_rgb(0.941, 0.902, 0.549);
222
223pub const LAVENDER: Color = Color::from_rgb(0.902, 0.902, 0.98);
225
226pub const LAVENDER_BLUSH: Color = Color::from_rgb(1.0, 0.941, 0.961);
228
229pub const LAWN_GREEN: Color = Color::from_rgb(0.486, 0.988, 0.0);
231
232pub const LEMON_CHIFFON: Color = Color::from_rgb(1.0, 0.98, 0.804);
234
235pub const LIGHT_BLUE: Color = Color::from_rgb(0.678, 0.847, 0.902);
237
238pub const LIGHT_CORAL: Color = Color::from_rgb(0.941, 0.502, 0.502);
240
241pub const LIGHT_CYAN: Color = Color::from_rgb(0.878, 1.0, 1.0);
243
244pub const LIGHT_GOLDEN_ROD_YELLOW: Color = Color::from_rgb(0.98, 0.98, 0.824);
246
247pub const LIGHT_GRAY: Color = Color::from_rgb(0.827, 0.827, 0.827);
249
250pub const LIGHT_GREY: Color = LIGHT_GRAY;
252
253pub const LIGHT_GREEN: Color = Color::from_rgb(0.565, 0.933, 0.565);
255
256pub const LIGHT_PINK: Color = Color::from_rgb(1.0, 0.714, 0.757);
258
259pub const LIGHT_SALMON: Color = Color::from_rgb(1.0, 0.627, 0.478);
261
262pub const LIGHT_SEA_GREEN: Color = Color::from_rgb(0.125, 0.698, 0.667);
264
265pub const LIGHT_SKY_BLUE: Color = Color::from_rgb(0.529, 0.808, 0.98);
267
268pub const LIGHT_SLATE_GRAY: Color = Color::from_rgb(0.467, 0.533, 0.6);
270
271pub const LIGHT_SLATE_GREY: Color = LIGHT_SLATE_GRAY;
273
274pub const LIGHT_STEEL_BLUE: Color = Color::from_rgb(0.69, 0.769, 0.871);
276
277pub const LIGHT_YELLOW: Color = Color::from_rgb(1.0, 1.0, 0.878);
279
280pub const LIME: Color = Color::from_rgb(0.0, 1.0, 0.0);
282
283pub const LIME_GREEN: Color = Color::from_rgb(0.196, 0.804, 0.196);
285
286pub const LINEN: Color = Color::from_rgb(0.98, 0.941, 0.902);
288
289pub const MAGENTA: Color = Color::from_rgb(1.0, 0.0, 1.0);
291
292pub const MAROON: Color = Color::from_rgb(0.502, 0.0, 0.0);
294
295pub const MEDIUM_AQUA_MARINE: Color = Color::from_rgb(0.4, 0.804, 0.667);
297
298pub const MEDIUM_BLUE: Color = Color::from_rgb(0.0, 0.0, 0.804);
300
301pub const MEDIUM_ORCHID: Color = Color::from_rgb(0.729, 0.333, 0.827);
303
304pub const MEDIUM_PURPLE: Color = Color::from_rgb(0.576, 0.439, 0.859);
306
307pub const MEDIUM_SEA_GREEN: Color = Color::from_rgb(0.235, 0.702, 0.443);
309
310pub const MEDIUM_SLATE_BLUE: Color = Color::from_rgb(0.482, 0.408, 0.933);
312
313pub const MEDIUM_SPRING_GREEN: Color = Color::from_rgb(0.0, 0.98, 0.604);
315
316pub const MEDIUM_TURQUOISE: Color = Color::from_rgb(0.282, 0.82, 0.8);
318
319pub const MEDIUM_VIOLET_RED: Color = Color::from_rgb(0.78, 0.082, 0.522);
321
322pub const MIDNIGHT_BLUE: Color = Color::from_rgb(0.098, 0.098, 0.439);
324
325pub const MINT_CREAM: Color = Color::from_rgb(0.961, 1.0, 0.98);
327
328pub const MISTY_ROSE: Color = Color::from_rgb(1.0, 0.894, 0.882);
330
331pub const MOCCASIN: Color = Color::from_rgb(1.0, 0.894, 0.71);
333
334pub const NAVAJO_WHITE: Color = Color::from_rgb(1.0, 0.871, 0.678);
336
337pub const NAVY: Color = Color::from_rgb(0.0, 0.0, 0.502);
339
340pub const OLD_LACE: Color = Color::from_rgb(0.992, 0.961, 0.902);
342
343pub const OLIVE: Color = Color::from_rgb(0.502, 0.502, 0.0);
345
346pub const OLIVE_DRAB: Color = Color::from_rgb(0.42, 0.557, 0.137);
348
349pub const ORANGE: Color = Color::from_rgb(1.0, 0.647, 0.0);
351
352pub const ORANGE_RED: Color = Color::from_rgb(1.0, 0.271, 0.0);
354
355pub const ORCHID: Color = Color::from_rgb(0.855, 0.439, 0.839);
357
358pub const PALE_GOLDEN_ROD: Color = Color::from_rgb(0.933, 0.91, 0.667);
360
361pub const PALE_GREEN: Color = Color::from_rgb(0.596, 0.984, 0.596);
363
364pub const PALE_TURQUOISE: Color = Color::from_rgb(0.686, 0.933, 0.933);
366
367pub const PALE_VIOLET_RED: Color = Color::from_rgb(0.859, 0.439, 0.576);
369
370pub const PAPAYA_WHIP: Color = Color::from_rgb(1.0, 0.937, 0.835);
372
373pub const PEACH_PUFF: Color = Color::from_rgb(1.0, 0.855, 0.725);
375
376pub const PERU: Color = Color::from_rgb(0.804, 0.522, 0.247);
378
379pub const PINK: Color = Color::from_rgb(1.0, 0.753, 0.796);
381
382pub const PLUM: Color = Color::from_rgb(0.867, 0.627, 0.867);
384
385pub const POWDER_BLUE: Color = Color::from_rgb(0.69, 0.878, 0.902);
387
388pub const PURPLE: Color = Color::from_rgb(0.502, 0.0, 0.502);
390
391pub const REBECCA_PURPLE: Color = Color::from_rgb(0.4, 0.2, 0.6);
393
394pub const RED: Color = Color::from_rgb(1.0, 0.0, 0.0);
396
397pub const ROSY_BROWN: Color = Color::from_rgb(0.737, 0.561, 0.561);
399
400pub const ROYAL_BLUE: Color = Color::from_rgb(0.255, 0.412, 0.882);
402
403pub const SADDLE_BROWN: Color = Color::from_rgb(0.545, 0.271, 0.075);
405
406pub const SALMON: Color = Color::from_rgb(0.98, 0.502, 0.447);
408
409pub const SANDY_BROWN: Color = Color::from_rgb(0.957, 0.643, 0.376);
411
412pub const SEA_GREEN: Color = Color::from_rgb(0.18, 0.545, 0.341);
414
415pub const SEA_SHELL: Color = Color::from_rgb(1.0, 0.961, 0.933);
417
418pub const SIENNA: Color = Color::from_rgb(0.627, 0.322, 0.176);
420
421pub const SILVER: Color = Color::from_rgb(0.753, 0.753, 0.753);
423
424pub const SKY_BLUE: Color = Color::from_rgb(0.529, 0.808, 0.922);
426
427pub const SLATE_BLUE: Color = Color::from_rgb(0.416, 0.353, 0.804);
429
430pub const SLATE_GRAY: Color = Color::from_rgb(0.439, 0.502, 0.565);
432
433pub const SLATE_GREY: Color = SLATE_GRAY;
435
436pub const SNOW: Color = Color::from_rgb(1.0, 0.98, 0.98);
438
439pub const SPRING_GREEN: Color = Color::from_rgb(0.0, 1.0, 0.498);
441
442pub const STEEL_BLUE: Color = Color::from_rgb(0.275, 0.51, 0.706);
444
445pub const TAN: Color = Color::from_rgb(0.824, 0.706, 0.549);
447
448pub const TEAL: Color = Color::from_rgb(0.0, 0.502, 0.502);
450
451pub const THISTLE: Color = Color::from_rgb(0.847, 0.749, 0.847);
453
454pub const TOMATO: Color = Color::from_rgb(1.0, 0.388, 0.278);
456
457pub const TURQUOISE: Color = Color::from_rgb(0.251, 0.878, 0.816);
459
460pub const VIOLET: Color = Color::from_rgb(0.933, 0.51, 0.933);
462
463pub const WHEAT: Color = Color::from_rgb(0.961, 0.871, 0.702);
465
466pub const WHITE: Color = Color::WHITE;
468
469pub const WHITE_SMOKE: Color = Color::WHITE;
471
472pub const YELLOW: Color = Color::from_rgb(1.0, 1.0, 0.0);
474
475pub const YELLOW_GREEN: Color = Color::from_rgb(0.604, 0.804, 0.196);