css_colors 1.1.6
css_colors: ^1.1.6 copied to clipboard
Defines constant dart:ui Color objects for CSS colors (for use in Flutter code).
CSS Colors #
To be discontinued #
This project will be discontinued on April 30, 2025, and will not receive further updates after that point. Community members interested in collaborating on a community-maintained fork can coordinate in this issue.
This package defines color constants for the CSS colors. These color constants
use the Color class
from dart:ui
, which means they're useful for Flutter apps.
Use #
final Container orange = Container(color: CSSColors.orange);
copied to clipboard