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

outdatedDart 1 only

A simple class to encapsulate the concept of a color and provide some helpful conversion methods..

Color #

A simple Dart package exposing a Color class which can be used to create, convert, and compare colors.

Installation #

  1. Add this to your package's pubspec.yaml file:

    dependencies:
      color: any
    
  2. Get the package using your IDE's GUI or via command line with

    $ pub get
    
  3. Import the color.dart file in your app

    import 'package:color/color.dart';
    

Usage #

Color objects can be constructed using any of a few available constructors.

To create a color from rgb values, call

Color rgbColor = new Color.rgb(192, 255, 238);

Alternatively, a color can be created from a string containing a hex value with

Color hexColor = new Color.hex('c0ffee');

Regardless of how a color is constructed, its value is internally stored as rgb values and is accessed the same as any other color.

Colors can be compared using the == operator, which will evaluate to true if the two colors share identical rgb values.

assert(new Color.hex('c0ffee') == new Color.hex('c0ffee'));
30
likes
0
pub points
92%
popularity

Publisher

verified publishermikefenwick.com

A simple class to encapsulate the concept of a color and provide some helpful conversion methods..

Repository
View/report issues

License

unknown (LICENSE)

More

Packages that depend on color