A simple mirc color code formatter partially inspired by yansi
```rust use mirc::Paint;
irc.sendprivmsg("#channel", Paint::red("red text")); irc.sendprivmsg("#channel", format!("Hello: {}", Paint::blue("nick"))); ```
Works on any type that impl's fmt::Display