sty 0.3.1

Color terminal outputs in a minimal, macro-based, and dead simple way.
Documentation
1
2
3
4
5
6
7
use sty::{
    sty,
    style::{red, underline},
};
fn main() {
    println!("{} {}", sty!("Hello", [red]), underline("world!"));
}