Skip to content

Instantly share code, notes, and snippets.

@iamskok
Created June 20, 2019 05:03
Show Gist options
  • Save iamskok/30646255936e6d1d118484416afc4466 to your computer and use it in GitHub Desktop.
Save iamskok/30646255936e6d1d118484416afc4466 to your computer and use it in GitHub Desktop.
Random HEX color generator
function randomHex() {
const hexMax = 256 * 256 * 256;
return '#' + Math.floor(Math.random() * hexMax).toString(16).toUpperCase().padStart(6, '0');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment