colorstyle 1.0.2

ColorStyle is a library of styles for command-line text.ColorStyle 是一个用于命令行文本的样式库。
Documentation
  • Coverage
  • 55.45%
    61 out of 110 items documented8 out of 68 items with examples
  • Size
  • Source code size: 55.97 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.94 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • code-translation/colorstyle
    7 2 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • wandercn

Colorstyle

crates.io Released API docs GPL3 licensed Downloads of Crates.io Lines of code Build Languages

colorStyle is a library of styles for command-line text.

Inspired by flylog/colorstyle (golang)

Example

  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("反显文本");

Doc

See this document at API documentation

Todo

  • 增加sprintf()宏支持可变数量的参数,参考标准的println!()

Screen