Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
heartwood crates radicle-term src ansi.rs
//! A dead simple ANSI terminal color painting library.
//!
//! This library is a port of the `yansi` crate.
//! Copyright (c) 2017 Sergio Benitez
//!
mod color;
mod paint;
mod style;
#[cfg(test)]
mod tests;

pub use color::Color;
pub use paint::Filled;
pub use paint::Paint;
pub use paint::TerminalFile;
pub use paint::paint;
pub use style::Style;