1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// #![forbid(missing_docs)]
// #![forbid(missing_crate_level_docs)]
// #![forbid(missing_debug_implementations)]
// #![forbid(missing_doc_code_examples)]
// #![doc = include_str!("../readme.md")]
pub use color_core::*;
pub(crate) use self::utils::*;
pub use self::{
color::rgba,
hex::hex_color,
number::{alpha_value, angle_turn, float_value},
};
pub use nom::Finish;
mod color;
mod hex;
mod named;
mod number;
mod utils;