mirc-rs/readme.md
wpbirney 22a5217493 Enabled background color functionality
renamed ColorCode to Color and Color to Paint
bump version to 0.1.1
2022-06-02 14:03:31 -04:00

14 lines
327 B
Markdown

# mirc-rs
A simple mirc color code formatter partially inspired by [yansi](https://github.com/SergioBenitez/yansi)
## Usage
```rust
use mirc::Paint;
irc.send_privmsg("#channel", Paint::red("red text"));
irc.send_privmsg("#channel", format!("Hello: {}", Paint::blue("nick")));
```
Works on any type that impl's fmt::Display