1 个稳定版本
1.0.0 | 2022 年 12 月 28 日 |
---|---|
0.1.0 |
|
#699 在 命令行界面
6KB
终端涂鸦
基于 ANSI 转义码简化在控制台中打印彩色文本的 Rust 库。应在 Linux、macOS 和 Windows(从 Windows 10 1511+)上运行。
示例
use terminal_paint as tp;
let my_str: String = tp::paint("hello world!", tp::YELLOW);
let my_str2: String = tp::paint("world hello", tp::ON_RED);
println!("{}, {}", my_str, my_str2);
// this will call println! and change the color of your text
tp::color_println("this is blue text", tp::BLUE);
许可协议
此包遵循 MIT 许可协议。 https://opensource.org/licenses/MIT
lib.rs
:
终端涂鸦
terminal-paint
是一个简化在控制台中打印彩色文本的库。它基于 ANSI 转义码。应在 Linux、macOS 和 Windows(从 Windows 10 1511+)上运行。