colorized 1.0.0

A tool to colorized output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
This allows Strings and &str to have color with .color(COLOR_ENUM)

# Examples


```rust
use colorized::*;

fn main() {
    println!("{}", "Wow".color(Colors::CyanFg));
    let john: String = String::from(":)");
    println!("{}",  john.color(Colors::BrightMagentaBg));
}
```