Crate color_parser

Source

Structs§

CMYKColor
A color in the CMYK Color Space.
HSLColor
A color in HSLA color space with 32-bit floating point components.
HSVColor
A color in the HSV Color Space.
RGBColor
A color in the RGB Color Space.

Functions§

alpha_value
<alpha> = <number> | <percentage>
angle_turn
<angle> = <number> <angle-measure>
float_value
<float> = <number> | <percentage>
hex
parse_hex
<hex-color_parser> = #<hex-value>{3,4,6,8} https://www.w3.org/TR/css-color-4/#hex-notation
rgba
<rgb> = (rgb|rgba) ((<percentage>|<number>)#{3},<alpha-value>?)

Type Aliases§

CMYK32
128-bit 4 channel color in the CMYK Color Space.
HSLA32
A color in HSLA color space with 32-bit floating point components.
HSVA32
128-bit 4 channel color in the HSV Color Space.
RGB8
24-bit 3 channel color in the RGB Color Space.
RGBA8
32-bit 4 channel color in the RGB Color Space.
RGBA32
128-bit 4 channel color in the RGB Color Space.