@@ -335,3 +335,152 @@ pub mod css_colors {
335
335
// The other 130 css colors
336
336
// TODO
337
337
}
338
+
339
+ // Define the colors specified by css
340
+ define_color!( ALICEBLUE , 240 , 248 , 255 )
341
+ define_color!( ANTIQUEWHITE , 250 , 235 , 215 )
342
+ define_color!( AQUA , 0 , 255 , 255 )
343
+ define_color!( AQUAMARINE , 127 , 255 , 212 )
344
+ define_color!( AZURE , 240 , 255 , 255 )
345
+ define_color!( BEIGE , 245 , 245 , 220 )
346
+ define_color!( BISQUE , 255 , 228 , 196 )
347
+ define_color!( BLACK , 0 , 0 , 0 )
348
+ define_color!( BLANCHEDALMOND , 255 , 235 , 205 )
349
+ define_color!( BLUE , 0 , 0 , 255 )
350
+ define_color!( BLUEVIOLET , 138 , 43 , 226 )
351
+ define_color!( BROWN , 165 , 42 , 42 )
352
+ define_color!( BURLYWOOD , 222 , 184 , 135 )
353
+ define_color!( CADETBLUE , 95 , 158 , 160 )
354
+ define_color!( CHARTREUSE , 127 , 255 , 0 )
355
+ define_color!( CHOCOLATE , 210 , 105 , 30 )
356
+ define_color!( CORAL , 255 , 127 , 80 )
357
+ define_color!( CORNFLOWERBLUE , 100 , 149 , 237 )
358
+ define_color!( CORNSILK , 255 , 248 , 220 )
359
+ define_color!( CRIMSON , 220 , 20 , 60 )
360
+ define_color!( CYAN , 0 , 255 , 255 )
361
+ define_color!( DARKBLUE , 0 , 0 , 139 )
362
+ define_color!( DARKCYAN , 0 , 139 , 139 )
363
+ define_color!( DARKGOLDENROD , 184 , 134 , 11 )
364
+ define_color!( DARKGRAY , 169 , 169 , 169 )
365
+ define_color!( DARKGREEN , 0 , 100 , 0 )
366
+ define_color!( DARKGREY , 169 , 169 , 169 )
367
+ define_color!( DARKKHAKI , 189 , 183 , 107 )
368
+ define_color!( DARKMAGENTA , 139 , 0 , 139 )
369
+ define_color!( DARKOLIVEGREEN , 85 , 107 , 47 )
370
+ define_color!( DARKORANGE , 255 , 140 , 0 )
371
+ define_color!( DARKORCHID , 153 , 50 , 204 )
372
+ define_color!( DARKRED , 139 , 0 , 0 )
373
+ define_color!( DARKSALMON , 233 , 150 , 122 )
374
+ define_color!( DARKSEAGREEN , 143 , 188 , 143 )
375
+ define_color!( DARKSLATEBLUE , 72 , 61 , 139 )
376
+ define_color!( DARKSLATEGRAY , 47 , 79 , 79 )
377
+ define_color!( DARKSLATEGREY , 47 , 79 , 79 )
378
+ define_color!( DARKTURQUOISE , 0 , 206 , 209 )
379
+ define_color!( DARKVIOLET , 148 , 0 , 211 )
380
+ define_color!( DEEPPINK , 255 , 20 , 147 )
381
+ define_color!( DEEPSKYBLUE , 0 , 191 , 255 )
382
+ define_color!( DIMGRAY , 105 , 105 , 105 )
383
+ define_color!( DIMGREY , 105 , 105 , 105 )
384
+ define_color!( DODGERBLUE , 30 , 144 , 255 )
385
+ define_color!( FIREBRICK , 178 , 34 , 34 )
386
+ define_color!( FLORALWHITE , 255 , 250 , 240 )
387
+ define_color!( FORESTGREEN , 34 , 139 , 34 )
388
+ define_color!( FUCHSIA , 255 , 0 , 255 )
389
+ define_color!( GAINSBORO , 220 , 220 , 220 )
390
+ define_color!( GHOSTWHITE , 248 , 248 , 255 )
391
+ define_color!( GOLD , 255 , 215 , 0 )
392
+ define_color!( GOLDENROD , 218 , 165 , 32 )
393
+ define_color!( GRAY , 128 , 128 , 128 )
394
+ define_color!( GREY , 128 , 128 , 128 )
395
+ define_color!( GREEN , 0 , 128 , 0 )
396
+ define_color!( GREENYELLOW , 173 , 255 , 47 )
397
+ define_color!( HONEYDEW , 240 , 255 , 240 )
398
+ define_color!( HOTPINK , 255 , 105 , 180 )
399
+ define_color!( INDIANRED , 205 , 92 , 92 )
400
+ define_color!( INDIGO , 75 , 0 , 130 )
401
+ define_color!( IVORY , 255 , 255 , 240 )
402
+ define_color!( KHAKI , 240 , 230 , 140 )
403
+ define_color!( LAVENDER , 230 , 230 , 250 )
404
+ define_color!( LAVENDERBLUSH , 255 , 240 , 245 )
405
+ define_color!( LAWNGREEN , 124 , 252 , 0 )
406
+ define_color!( LEMONCHIFFON , 255 , 250 , 205 )
407
+ define_color!( LIGHTBLUE , 173 , 216 , 230 )
408
+ define_color!( LIGHTCORAL , 240 , 128 , 128 )
409
+ define_color!( LIGHTCYAN , 224 , 255 , 255 )
410
+ define_color!( LIGHTGOLDENRODYELLOW , 250 , 250 , 210 )
411
+ define_color!( LIGHTGRAY , 211 , 211 , 211 )
412
+ define_color!( LIGHTGREEN , 144 , 238 , 144 )
413
+ define_color!( LIGHTGREY , 211 , 211 , 211 )
414
+ define_color!( LIGHTPINK , 255 , 182 , 193 )
415
+ define_color!( LIGHTSALMON , 255 , 160 , 122 )
416
+ define_color!( LIGHTSEAGREEN , 32 , 178 , 170 )
417
+ define_color!( LIGHTSKYBLUE , 135 , 206 , 250 )
418
+ define_color!( LIGHTSLATEGRAY , 119 , 136 , 153 )
419
+ define_color!( LIGHTSLATEGREY , 119 , 136 , 153 )
420
+ define_color!( LIGHTSTEELBLUE , 176 , 196 , 222 )
421
+ define_color!( LIGHTYELLOW , 255 , 255 , 224 )
422
+ define_color!( LIME , 0 , 255 , 0 )
423
+ define_color!( LIMEGREEN , 50 , 205 , 50 )
424
+ define_color!( LINEN , 250 , 240 , 230 )
425
+ define_color!( MAGENTA , 255 , 0 , 255 )
426
+ define_color!( MAROON , 128 , 0 , 0 )
427
+ define_color!( MEDIUMAQUAMARINE , 102 , 205 , 170 )
428
+ define_color!( MEDIUMBLUE , 0 , 0 , 205 )
429
+ define_color!( MEDIUMORCHID , 186 , 85 , 211 )
430
+ define_color!( MEDIUMPURPLE , 147 , 112 , 219 )
431
+ define_color!( MEDIUMSEAGREEN , 60 , 179 , 113 )
432
+ define_color!( MEDIUMSLATEBLUE , 123 , 104 , 238 )
433
+ define_color!( MEDIUMSPRINGGREEN , 0 , 250 , 154 )
434
+ define_color!( MEDIUMTURQUOISE , 72 , 209 , 204 )
435
+ define_color!( MEDIUMVIOLETRED , 199 , 21 , 133 )
436
+ define_color!( MIDNIGHTBLUE , 25 , 25 , 112 )
437
+ define_color!( MINTCREAM , 245 , 255 , 250 )
438
+ define_color!( MISTYROSE , 255 , 228 , 225 )
439
+ define_color!( MOCCASIN , 255 , 228 , 181 )
440
+ define_color!( NAVAJOWHITE , 255 , 222 , 173 )
441
+ define_color!( NAVY , 0 , 0 , 128 )
442
+ define_color!( OLDLACE , 253 , 245 , 230 )
443
+ define_color!( OLIVE , 128 , 128 , 0 )
444
+ define_color!( OLIVEDRAB , 107 , 142 , 35 )
445
+ define_color!( ORANGE , 255 , 165 , 0 )
446
+ define_color!( ORANGERED , 255 , 69 , 0 )
447
+ define_color!( ORCHID , 218 , 112 , 214 )
448
+ define_color!( PALEGOLDENROD , 238 , 232 , 170 )
449
+ define_color!( PALEGREEN , 152 , 251 , 152 )
450
+ define_color!( PALETURQUOISE , 175 , 238 , 238 )
451
+ define_color!( PALEVIOLETRED , 219 , 112 , 147 )
452
+ define_color!( PAPAYAWHIP , 255 , 239 , 213 )
453
+ define_color!( PEACHPUFF , 255 , 218 , 185 )
454
+ define_color!( PERU , 205 , 133 , 63 )
455
+ define_color!( PINK , 255 , 192 , 203 )
456
+ define_color!( PLUM , 221 , 160 , 221 )
457
+ define_color!( POWDERBLUE , 176 , 224 , 230 )
458
+ define_color!( PURPLE , 128 , 0 , 128 )
459
+ define_color!( RED , 255 , 0 , 0 )
460
+ define_color!( ROSYBROWN , 188 , 143 , 143 )
461
+ define_color!( ROYALBLUE , 65 , 105 , 225 )
462
+ define_color!( SADDLEBROWN , 139 , 69 , 19 )
463
+ define_color!( SALMON , 250 , 128 , 114 )
464
+ define_color!( SANDYBROWN , 244 , 164 , 96 )
465
+ define_color!( SEAGREEN , 46 , 139 , 87 )
466
+ define_color!( SEASHELL , 255 , 245 , 238 )
467
+ define_color!( SIENNA , 160 , 82 , 45 )
468
+ define_color!( SILVER , 192 , 192 , 192 )
469
+ define_color!( SKYBLUE , 135 , 206 , 235 )
470
+ define_color!( SLATEBLUE , 106 , 90 , 205 )
471
+ define_color!( SLATEGRAY , 112 , 128 , 144 )
472
+ define_color!( SLATEGREY , 112 , 128 , 144 )
473
+ define_color!( SNOW , 255 , 250 , 250 )
474
+ define_color!( SPRINGGREEN , 0 , 255 , 127 )
475
+ define_color!( STEELBLUE , 70 , 130 , 180 )
476
+ define_color!( TAN , 210 , 180 , 140 )
477
+ define_color!( TEAL , 0 , 128 , 128 )
478
+ define_color!( THISTLE , 216 , 191 , 216 )
479
+ define_color!( TOMATO , 255 , 99 , 71 )
480
+ define_color!( TURQUOISE , 64 , 224 , 208 )
481
+ define_color!( VIOLET , 238 , 130 , 238 )
482
+ define_color!( WHEAT , 245 , 222 , 179 )
483
+ define_color!( WHITE , 255 , 255 , 255 )
484
+ define_color!( WHITESMOKE , 245 , 245 , 245 )
485
+ define_color!( YELLOW , 255 , 255 , 0 )
486
+ define_color!( YELLOWGREEN , 154 , 205 , 50 )
0 commit comments