#颜色 #终端 #打印 #文本 #终端颜色 #彩色 #polychome

polychrome

用于在终端中打印彩色和下划线文本的crate

6个版本 (稳定版)

新版本 2.0.3 2024年8月23日
2.0.2 2024年8月21日
2.0.0 2024年8月19日
0.1.2 2024年4月1日
0.1.0 2024年4月1日

#274 in 命令行界面

Download history 4/week @ 2024-05-17 2/week @ 2024-05-24 321/week @ 2024-08-16

每月321次下载

MIT许可证

255KB
64 行代码

Polychrome

drawing

Polychome 是一个用于在终端中打印样式文本的crate。

使用方法

只需将其添加到您的 Cargo.toml

[dependencies]
polychrome = "2.0.2"

然后就可以使用了!

use polychrome::ColorPrintExt;

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

依赖项