radicle_term/ansi.rs
1//! A dead simple ANSI terminal color painting library.
2//!
3//! This library is a port of the `yansi` crate.
4//! Copyright (c) 2017 Sergio Benitez
5//!
6mod color;
7mod paint;
8mod style;
9#[cfg(test)]
10mod tests;
11
12pub use color::Color;
13pub use paint::paint;
14pub use paint::Filled;
15pub use paint::Paint;
16pub use paint::TerminalFile;
17pub use style::Style;