Skip to content

Instantly share code, notes, and snippets.

@popovichN
Created November 16, 2018 21:47
Show Gist options
  • Select an option

  • Save popovichN/c5b48805ca184470f065cdf9c2bf41b9 to your computer and use it in GitHub Desktop.

Select an option

Save popovichN/c5b48805ca184470f065cdf9c2bf41b9 to your computer and use it in GitHub Desktop.
function getRandomColor () {
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