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
mod base;
mod cmy;
mod cmyk;
mod hsl;
mod hsv;
#[cfg(feature = "experimental")]
mod lab;
mod rgb;
mod rgba;
#[cfg(feature = "experimental")]
mod xyz;

pub mod adjust;
pub mod alpha;
pub mod mix;
pub mod round;

pub mod convert;
pub mod marker;

pub mod to_hex_string;

pub(crate) type Float = f32;

#[cfg(any(feature = "color_from_css", test))]
pub mod css;

mod utils;
pub(crate) use utils::*;

#[cfg(test)]
mod test_utils;

pub use alpha::*;
pub use prelude::*;

pub mod prelude {
    use super::*;
    pub use base::{Color, ColorError};
    pub use cmy::CmyColor;
    pub use cmyk::CmykColor;
    pub use hsl::HslColor;
    pub use hsv::HsvColor;
    #[cfg(feature = "experimental")]
    pub use lab::LabColor;
    pub use rgb::RgbColor;
    pub use rgba::RgbaColor;
    #[cfg(feature = "experimental")]
    pub use xyz::XyzColor;

    pub use adjust::*;
    pub use alpha::{Alpha as AlphaChannel, HasAlpha};
    pub use mix::*;
    pub use round::*;

    pub use convert::*;
    pub use marker::*;
    // #[deprecated]
    // pub use palette::*;
    pub use to_hex_string::*;
}