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