Coloriz is a library for colorizing terminal outputs
Add this to your Cargo.toml :
toml
[dependencies]
coloriz = "0.1.0"
```rust use coloriz::{Colorize, Color};
fn main() { let text = "Hello, world!";
println!("{}{}", text.bg(Color::BrightRed), text.fg(Color::Red));
println!("{}{}", text.fg(Color::Green), text.bg(Color::Green));
println!("{}{}", text.bg(Color::BrightYellow), text.fg(Color::Yellow));
println!("{}{}", text.fg(Color::BrightBlue), text.bg(Color::Blue));
println!("{}{}", text.bg(Color::BrightMagenta), text.fg(Color::Magenta));
println!("{}{}", text.fg(Color::BrightCyan), text.bg(Color::Cyan));
} ``` More examples