from_css_color

Creator: coderz1093

Last updated:

Add to Cart

Description:

from css color

From CSS Color #
A package that creates Flutter Color instances from CSS color strings according to CSS Color Module Level 3.
Hex, RGB(A), HSL(A) and X11 keywords are supported.
Backwards conversion from Color to CSS color string is also available with toCssColor() extention method.
Usage #
To use this plugin, add from_css_color as a dependency in your pubspec.yaml file.
Example #
Import the library.
import 'package:from_css_color/from_css_color.dart';
copied to clipboard
Use it anywhere you want to create a Color from CSS color definition format:
Container(
color: fromCssColor('#ff00aa'),
// ...
)

Container(
color: fromCssColor('rgb(100, 5, 32)'),
// ...
)
copied to clipboard
Convert Color back to CSS string:
final color = const Color(0xFFFBAFBA);

color.toCssString(); // '#fbafba'
copied to clipboard
Check CSS color string correctness:
isCssColor('#ff00aa'); // true
copied to clipboard
Visit examples for more details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.