Rainbow

A crate for simplifying colorful text in rust.

Examples

Write with Background color

```rust use pallete::*;

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

Write with Foreground color

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