color_wand 0.0.4 copy "color_wand: ^0.0.4" to clipboard
color_wand: ^0.0.4 copied to clipboard

A color library which can be used to create, convert, alter, and compare colors to be used in both Flutter and the web.

Color wand ✨ 🍭🧙‍♂️ Build Status #

A color library which can be used to create, convert, alter, and compare colors to be used in both Flutter and the web.

Installation 💻 #

  1. Add this to your package's pubspec.yaml file:
dependencies:
  color: any
  1. Get the package using your IDE's GUI or via command line with
$ pub get
  1. Import the color_wand.dart file in your app
import 'package:color_wand/color_wand.dart';

Usage 🥒 #

Color objects can be constructed by either using the factory constructors of the Color interface or by directly instantiating an RgbColor or an HslColor using one of their constructors.

  • From HEX: Color.hex(0xRRGGBBAA)
  • From a HEX string: Color.parseHex('#RRGGBBAA')
  • From RGB: Color.rgb(red: red, green: green, blue: blue)
  • From RGBA: Color.rgba(red: red, green: green, blue: blue, alpha: alpha)
  • From RGBO: Color.rgbo(red: red, green: green, blue: blue, opacity: opacity)
  • From HSL: Color.hsl(hue: hue, saturation: saturation, lightness: lightness)
  • From HSLO: Color.hslo(hue: hue, saturation: saturation, lightnesss: lightness, opacity: opacity)
  • From the lower 32 bits of an integer to be used e.g. for fast conversion to and from the Flutter color lib: RgbColor(value)

Colors are immutable, and most of them can be created using const constructors:

Color color = const Color.hex(0x12345678);

Colors can be converted from one color space to another by calling toRgb or toHsl on them.

Colors can be compared using the == operator, which will implicitly convert the color to an RgbColor and then compare there values.

Colors can be converted to a CSS color string by using one of the different implementations of the CssColorFormat interface.

Available formats are:

  • RgbFormat: rgb(red, green, blue) or rgb(red, green, blue, alpha)
  • RgbaFormat: rgba(red, green, blue) or rgba(red, green, blue, alpha)
  • HslFormat: hsl(hue, saturation, lightness) or hsl(hue, saturation, lightness, alpha)
  • HslaFormat: hsla(hue, saturation, lightness) or hsla(hue, saturation, lightness, alpha)
  • HexFormat #RRGGBBor #RRGGBBAA

Most of the formats can be customized to e.g. represent the values as percentages or decimal numbers.

final rgbFormat = RgbFormat(rgbStyle: PercentOrAlpha.alpha);
final hslFormat = HslFormat(hueStyle: DegreeOrDecimal.degree);
final color = Color.hsl(24, 100, 50);
assert(rgbFormat.format(color) == 'rgb(255, 102, 0)');
assert(hslFormat.format(color) == 'hsl(24deg, 100%, 50%)');
3
likes
15
pub points
1%
popularity

Publisher

unverified uploader

A color library which can be used to create, convert, alter, and compare colors to be used in both Flutter and the web.

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

meta

More

Packages that depend on color_wand