1 unstable release
0.1.0 | Dec 8, 2019 |
---|
#8 in #colorize
23 downloads per month
Used in 2 crates
5KB
84 lines
asciicolor
A tiny library for coloring text in ASCII terminals
Example
use asciicolor::Colorize;
fn main() {
print!("Hello, color!".blue().underline().bold())
}