stylic 0.3.1

A simple, fast library for styling text with ANSI escape codes
Documentation
use stylic::{lazy_format, Styleable};

fn main() {
    let hello = "Hello".styled().bold().red().on_blue();

    println!("{}", lazy_format!("{:b}", 12));

    let world = lazy_format!("Wor{}ld", lazy_format!("he{}he", "haha").styled().blue())
        .styled()
        .cyan()
        .inverted();

    println!("{hello}, {world}!");

    println!("{:?}", world.style);
    println!("{:?}", world.to_string());

    println!("{}", "strikethrough".styled().strikethrough());

    println!(
        "{}",
        "Google".styled().bold().green().link("https://google.com")
    );

    println!("{}", "Hello".styled().underline_colored(48.into()));
}