richterm

```rust use richterm::text; use richterm::print; use richterm::track;

use std::{thread, time};

fn main(){

let vec = vec![text("richterm", "fg:dark_blue bg:indian_red1 eff:b,i,u,blink,s")];
print(vec);

let arr = [text(" supports ", "")];
print(arr);

print([
    text(" many ", "bg:sea_green2 fg:black eff:i"),
    text(" features ", ""),
    text(" out of the box", "bg:yellow fg:black"),
    text("\n", "")
    ]);

print([
    text("Even", ""),
    text(" some ", "eff:b"),
    text("emojis like :+1: :apple: :bar_chart: :airplane_departure: :baguette_bread: :minibus:", ""),
    text("\n", "")
]);

for _item in track(5, "Downloading ..."){
    let ten_millis = time::Duration::from_millis(5);
    thread::sleep(ten_millis);
}
for _item in track(5, "Downloading ..."){
    let ten_millis = time::Duration::from_millis(5);
    thread::sleep(ten_millis);
}
for _item in track(5, "Downloading ..."){
    let ten_millis = time::Duration::from_millis(5);
    thread::sleep(ten_millis);
}

} ```

Docs

fg and bg colors

effects

emojis

Try github-flavoured shortcodes

track(5, "description")

Progressbar