Rainbow
A crate for simplifying colorful text in rust.
Examples
Write with Background color
use *;
Write with Foreground color
A crate for simplifying colorful text in rust.
use pallete::*;
fn main() -> std::io::Result<()> {
pallete::println_bg!(pallete::Color::Red, "Pallete Red!")?;
Ok(())
}
fn main() -> std::io::Result<()> {
pallete::println_fg!(pallete::Color::Red, "Pallete Red!")?;
Ok(())
}