colr-types 0.3.1

Color model ZSTs and marker traits for colr.
Documentation
//! Color model type definitions.

mod cmyk;
mod lab;
mod luma;
mod oklab;
mod rgb;
mod spectral;
mod ycbcr;
mod xyz;

pub use cmyk::*;
pub use lab::*;
pub use luma::*;
pub use oklab::*;
pub use rgb::*;
pub use spectral::*;
pub use ycbcr::*;
pub use xyz::*;