colorized 1.0.0

A tool to colorized output
Documentation
1
2
3
4
5
6
7
8
9
10
11
This is a funcition that prints a full colored sentence with a new line charactor

# Examples


```rust
use colorized::*;

fn main() {
  colorize_println("Wow this is great", Colors::BrightCyanFg);
}
```