Colorized

Colorized is a simple rust library that allows for you to display color to the console

Getting Started

Just add "colorized = 0.8.5" to your Cargo.toml to install it

Usage

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) } ```

License

MIT