1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// #![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 use self::{ color::rgba, hex::{hex, parse_hex}, number::{alpha_value, angle_turn, float_value}, }; mod color; mod hex; mod named; mod number; mod utils;