This library contains all of Google's material colors along with black, white, and custom colors.
It works seamlessly with rtfeldman/elm-css.
A color value, usually encompassing a color variant and a shade of the color. Exceptions are black, white, and custom colors.
Black and white have variants which accept a 2-character hex string for an alpha value (i.e. "80" would be 50% alpha).
Custom colors can be defined by hex values as you would in css (without the #).
The shade of color per the material design specification. Variants of shades with "A" appended allow a 2-character hex value for alpha to be supplied.
toCssColor : Color -> Css.Color
Converts from a Color to a Css.Color (from rtfeldman/elm-css).