1//! Color model type definitions.
23mod cmyk;
4mod lab;
5mod luma;
6mod oklab;
7mod rgb;
8mod spectral;
9mod ycbcr;
10mod xyz;
1112pub use cmyk::*;
13pub use lab::*;
14pub use luma::*;
15pub use oklab::*;
16pub use rgb::*;
17pub use spectral::*;
18pub use ycbcr::*;
19pub use xyz::*;