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
//! # Color Types and Utilities
//!
//! This module provides types and utilities for working with different color spaces,
//! color conversions, and LED color representation.
//!
//! ## Color Spaces
//!
//! - [`Srgb`] - Standard RGB color space (gamma-corrected)
//! - [`LinearSrgb`] - Linear RGB color space (no gamma correction)
//! - [`GammaSrgb`] - RGB with custom gamma correction
//! - [`Hsv`] - HSV color space
//! - [`Oklab`] - Perceptually uniform LAB space
//! - [`Okhsl`] - Perceptual HSL color space based on Oklab
//! - [`Okhsv`] - Perceptual HSV color space based on Oklab
//! - [`Xyz`] - CIE XYZ color space
//! - [`Lms`] - LMS cone response space
//!
//! ## Conversion Traits
//!
//! - [`FromColor`] - Convert from a color type
//! - [`IntoColor`] - Convert to a color type
//!
//! ## LED Output Modifiers
//!
//! - [`ColorCorrection`] - Correction factors for LED output
//!
//! ## LED Output
//!
//! - [`LedColor`] - Output-ready color data for LED hardware
//! - [`LedRgb`]
//! - [`LedRgbw`]
//! - [`LedChannels`] - Color channel formats for different LED chipsets
//! - [`RgbChannels`]
//! - [`RgbwChannels`]
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;