colornames 0.2.0 copy "colornames: ^0.2.0" to clipboard
colornames: ^0.2.0 copied to clipboard

Get a name for given Color. This package contains hardcoded names for 2231 color values. For an input color, it finds a name in the list which has the closest match.

Color Names #

Get a name for given Color

See working Online Demo DartArabic Showcase

Getting Started #

Follow instruction for Installation.

Import the package:

import 'package:colornames/colornames.dart' 

Usage #

Provide a Color to ColorNames.guess(color) or use extension method on color or int.

final color = Color(0xFFFFFF);
ColorNames.guess(color) ; // White
color.colorName; // White

final int colorValue = 128;
colorValue.colorName; // Navy Blue
0x007fff.colorName;// Azure
13
likes
150
points
901
downloads

Publisher

verified publisherthexaib.com

Weekly Downloads

Get a name for given Color. This package contains hardcoded names for 2231 color values. For an input color, it finds a name in the list which has the closest match.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on colornames