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

327 B

mirc-rs

A simple mirc color code formatter partially inspired by yansi

Usage

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