color-parser 0.1.0

Css color level3 parser
Documentation
// #![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;