1
2
3
4
5
6
7
8
9
10
11
12
13
14
use stylic::{style, Style, Stylize};

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

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

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