fancyer 0.2.1

Easily print colored text at runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11

This crate provides a runtime version of
the `colorize!` macro from the `fancy` crate.

It can be used to dynamically create colored strings
at runtime.

```rust
let msg = colorize("[blue|b]Hello [:u|red]world[:b]!".into());
println!("{}", msg);
```