stylic 0.3.1

A simple, fast library for styling text with ANSI escape codes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use stylic::{Style, Styleable};

fn main() {
    let my_style = Style::new().bold().blue();

    println!("{}!", "Hello".styled_with(my_style));

    println!(
        "{}",
        "Rust Language"
            .styled_with(my_style)
            .link("https://rust-lang.org")
    );
}