Skip to content

Instantly share code, notes, and snippets.

@henryspivey
Forked from prof3ssorSt3v3/10-hex.js
Last active October 30, 2019 21:20
Show Gist options
  • Save henryspivey/f1199ce792c65db52919aa9d1d7dad88 to your computer and use it in GitHub Desktop.
Save henryspivey/f1199ce792c65db52919aa9d1d7dad88 to your computer and use it in GitHub Desktop.
// Generate Random Hex Colour Values
/*
use Math.random
*/
function colour() {
return '#'+ Math.random().toString(16).substring(2,8)
}
console.log(colour());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment