6 releases (stable)

2.0.3 Aug 23, 2024
2.0.2 Aug 21, 2024
2.0.0 Aug 19, 2024
0.1.2 Apr 1, 2024
0.1.0 Apr 1, 2024

#275 in Command-line interface

Download history 526/week @ 2024-08-19 8/week @ 2024-08-26 45/week @ 2024-09-16 5/week @ 2024-09-23 3/week @ 2024-09-30

259 downloads per month

MIT license

255KB
64 lines

Polychrome

drawing

Polychome is a crate for printing styled text in your terminal.

Usage

Just add to your Cargo.toml

[dependencies]
polychrome = "2.0.2"

an then just use it!

use polychrome::ColorPrintExt;

fn main() {
    println!("{}", "Hello, world!".color(255, 0, 0).underline(None));
    println!("{}", "Hello, world!".color(0, 0, 255).underline(Some("stripe")));
}

Dependencies