Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Generate An Attractive Random Color In Rust

rust
//! ```cargo
//! [dependencies]
//! random_color = "0.8.0"
//! ```

use random_color::RandomColor;

fn main() {
  let color = RandomColor::new();
  println!("{}", color.to_hex());
}
results start

hasdf