Skip to content

Instantly share code, notes, and snippets.

@CharlesAMoss
Created September 10, 2018 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CharlesAMoss/adc4d75f90237c4189d56da24ecad4dc to your computer and use it in GitHub Desktop.
Save CharlesAMoss/adc4d75f90237c4189d56da24ecad4dc to your computer and use it in GitHub Desktop.
random hex color
let hex = '#' + Math.floor(Math.random() * 0x1000000)
.toString(16)
.padStart(6, '0');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment