//! This module contains various modules that implement types that implement [`Color`]. For convenience,
//! each main type is imported into this module's namespace directly.
//!
//! [`Color`]: ../color/trait.Color.html
// for convenience, use this namespace for the color objects
pub use AdobeRGBColor;
pub use CIELABColor;
pub use CIELCHColor;
pub use CIELCHuvColor;
pub use CIELUVColor;
pub use HSLColor;
pub use HSVColor;
pub use ROMMRGBColor;