#text #inline #text-color #variables #text-style #output #colorization

inline_colorization

format!("允许用户 {color_red}着色{color_reset} 和 {style_underline}样式化{style_reset} 输出文本,使用行内变量");

7 个版本

0.1.6 2023年11月2日
0.1.5 2023年8月16日

294文本处理

Download history 345/week @ 2024-04-08 295/week @ 2024-04-15 192/week @ 2024-04-22 139/week @ 2024-04-29 166/week @ 2024-05-06 157/week @ 2024-05-13 182/week @ 2024-05-20 175/week @ 2024-05-27 160/week @ 2024-06-03 191/week @ 2024-06-10 175/week @ 2024-06-17 204/week @ 2024-06-24 141/week @ 2024-07-01 252/week @ 2024-07-08 270/week @ 2024-07-15 298/week @ 2024-07-22

977 每月下载量
8 个包 中使用

MIT 许可证

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

无运行时依赖项