Skip to content

Instantly share code, notes, and snippets.

@HasannSola
Created August 25, 2017 05:48
Show Gist options
  • Save HasannSola/2047585a77088ecce143f84efcd95abe to your computer and use it in GitHub Desktop.
Save HasannSola/2047585a77088ecce143f84efcd95abe to your computer and use it in GitHub Desktop.
Create your random color
function () {
var letters = '0123456789ABCDEF';
var color = '#';
for (var 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