//! This crate provides a fast and easy way to color and style string using ANSI escape sequences
//! Repo: https://github.com/Hellaeh/hel-colored
// #![feature(concat_idents)]
// We do implement our own `to_string` method along `fmt::Display`
// TODO custom formatter?
pub use ANSIString;
pub use Color;
pub use Colored;
pub use Styled;
pub use ANSIStringBuilder;