1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//! Color-space implementations. One module per space.
mod a98;
mod cubehelix;
pub(crate) mod dlab;
mod dlch;
mod hpluv;
mod hsi;
mod hsl;
pub(crate) mod hsluv;
mod hsv;
mod hwb;
mod itp;
mod jab;
mod jch;
mod lab;
mod lab65;
mod lch;
mod lch65;
mod lchuv;
mod lrgb;
pub(crate) mod luv;
mod okhsl;
pub(crate) mod okhsl_helpers;
mod okhsv;
mod oklab;
mod oklch;
mod p3;
mod prismatic;
mod prophoto;
mod rec2020;
mod rgb;
mod xyb;
mod xyz50;
mod xyz65;
mod yiq;
pub use a98::A98;
pub use cubehelix::Cubehelix;
pub use dlab::Dlab;
pub use dlch::Dlch;
pub use hpluv::Hpluv;
pub use hsi::Hsi;
pub use hsl::Hsl;
pub use hsluv::Hsluv;
pub use hsv::Hsv;
pub use hwb::Hwb;
pub use itp::Itp;
pub use jab::Jab;
pub use jch::Jch;
pub use lab::Lab;
pub use lab65::Lab65;
pub use lch::Lch;
pub use lch65::Lch65;
pub use lchuv::Lchuv;
pub use lrgb::LinearRgb;
pub use luv::Luv;
pub use okhsl::Okhsl;
pub use okhsv::Okhsv;
pub use oklab::Oklab;
pub use oklch::Oklch;
pub use p3::P3;
pub use prismatic::Prismatic;
pub use prophoto::ProphotoRgb;
pub use rec2020::Rec2020;
pub use rgb::Rgb;
pub use xyb::Xyb;
pub use xyz50::Xyz50;
pub use xyz65::Xyz65;
pub use yiq::Yiq;