colornames 0.2.0 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
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