1 个不稳定版本
0.1.0 | 2021 年 9 月 4 日 |
---|
#17 in #linux-terminal
4KB
156 行代码
当您只需要颜色时
const_colors
是一组宏,允许您在 Linux 终端中添加颜色,而无需为此分配任何资源。
如何使用
使用时,只需在字符串中像这样使用 concat!
宏
concat!(red!(), "I'm red, make sure to end me", end!(), green!(), "Now I'm green", end!(), bold!(), blue!(), "Now I am bold blue", end!());
要使用与非常量值相关的颜色,只需像这样同时使用 format!
和 concat!
宏
format!(concat!("Server initialization ", bold!(), "{}", end!()));
println!(concat!("This also works with ", bold!(), "{}", end!(), "formatted data"));