Colorized is a simple rust library that allows for you to display color to the console
Just add "colorized = 0.8.5" to your Cargo.toml to install it
To use Colorized all you have to do is
```rust use Colorized::{color_definations::, commands::}
fn main() { let fg: ColorsFg = ColorsFg::new(); let bg: ColorsBg = ColorsBg::new();
println!("{}", colorizethis("Wow this is amazing", bg.greenbg)); colorizeprintln("This is just so efficent", fg.brightred_fg) } ```
MIT