console-decorate 0.1.0

A library for decorating text in the console.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
Usage:

```rust
pub use console_decorate::prelude::*;

fn main() {
    println!(
        "{}",
        decorate!("YES!", BLUE, BOLD, UNDERLINE, ITALICS, STRIKETHROUGH)
    );
}
```