colorStyle is a library of styles for command-line text.
Inspired by flylog/colorstyle (golang)
let text = colorstyle::green("green");
println!("a {} text", text);
let text = colorstyle::blue("Blue");
println!("a {} text\n", text);
let text = colorstyle::CSS::new().color_red().sprint("red");
println!("a {} text",text);
colorstyle::CSS::new().style_italic().color_red().bg_yellow().println("a italic red bgYellow text: Hello ไธ็!");
colorstyle::CSS::new().style_bold().println("a bold text: Hello ไธ็!");
colorstyle::CSS::new().style_italic().println("a italic text: Hello ไธ็!");
colorstyle::CSS::new().color_magenta().println("a magenta text: Hello ไธ็!");
colorstyle::CSS::new().bg_cyan().println("a background color cyan text: Hello ไธ็!");
colorstyle::CSS::new().bg_cyan().println("a background color cyan text");
let mut css = colorstyle::CSS::new();
css.style_strikethrough().println("ๅ ้ค็บฟๆๆฌ");
css.style_underline().println("ไธๅ็บฟๆๆฌ");
css.style_reverse().println("ๅๆพๆๆฌ");
See this document at API documentation
- ๅขๅ sprintf()ๅฎๆฏๆๅฏๅๆฐ้็ๅๆฐ๏ผๅ่ๆ ๅ็println!()
