Skip to content

Instantly share code, notes, and snippets.

@giventofly
Created May 8, 2018 16:37
Show Gist options
  • Save giventofly/8df61d99b33c64b4e35f8fb0085bb1bf to your computer and use it in GitHub Desktop.
Save giventofly/8df61d99b33c64b4e35f8fb0085bb1bf to your computer and use it in GitHub Desktop.
randomColor hexadecimal
function getRandomColor() {
let letters = '0123456789ABCDEF';
let color = '#';
for (let i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * 16)];
}
return color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment