7 个版本
0.1.6 | 2023年11月2日 |
---|---|
0.1.5 | 2023年8月16日 |
294 在 文本处理
977 每月下载量
在 8 个包 中使用
6KB
74 行
inline_colorization
通过命令提示符写入添加库
cargo add inline_colorization
然后在你的 main.rs 文件中
use inline_colorization::*;
然后你可以运行
println!("Lets the user {color_red}colorize{color_reset} and {style_underline}style the output{style_reset} text using inline variables");
文本样式变量 |
---|
style_bold |
style_underline |
style_reset |
文本颜色变量 |
---|
color_black |
color_red |
color_green |
color_yellow |
color_blue |
color_magenta |
color_cyan |
color_white |
color_bright_black |
color_bright_red |
color_bright_green |
color_bright_yellow |
color_bright_blue |
color_bright_magenta |
color_bright_cyan |
color_bright_white |
color_reset |
文本背景变量 |
---|
bg_black |
bg_red |
bg_green |
bg_yellow |
bg_blue |
bg_magenta |
bg_cyan |
bg_white |
bg_bright_black |
bg_bright_red |
bg_bright_green |
bg_bright_yellow |
bg_bright_blue |
bg_bright_magenta |
bg_bright_cyan |
bg_bright_white |
bg_reset |
只需记住,当您想要默认文本设置时,请重置样式、颜色或背景
要查看预期结果的示例,可以运行
cargo run --example all_codes