mod ansi;
mod css;
mod style;
mod custom;
mod named;
mod xterm;
mod any;
pub use ansi::AnsiColor;
pub use css::CssColor;
pub use style::TextStyle;
pub use custom::CustomColor;
pub use named::NamedColor;
pub use xterm::XtermColor;
pub use any::AnyColor;
pub trait EnumColor: Sized {
fn from_name(name: &str) -> Option<Self>;
}