pallete 1.0.0

Write text in rainbow colors
Documentation

Rainbow

A crate for simplifying colorful text in rust.

Examples

Write with Background color

fn main() -> std::io::Result<()> {
    pallete::printbgln(pallete::Color::Red, "Pallete Red!")?;
    Ok(())
}

Write with Foreground color

fn main() -> std::io::Result<()> {
    pallete::printc(pallete::Color::Red, "Pallete Red!")?;
    Ok(())
}