nsys-color-utils 0.1.0

Color utilities
Documentation
1
2
3
4
5
6
7
8
9
10
use color_utils::*;

fn main() {
  println!("color utils: example main...");
  color_utils::report_sizes();
  println!("Color::BLACK.named(): {:?}", Color::BLACK.named().unwrap());
  println!("BLACK: {:?}", BLACK);
  assert_eq!(Color::BLACK.raw(), BLACK);
  println!("color utils: ...example main");
}