Skip to content

Instantly share code, notes, and snippets.

@MaxySpark
Created October 31, 2017 20:14
Show Gist options
  • Select an option

  • Save MaxySpark/c264c832f90a408ca41b9fd9cb05a974 to your computer and use it in GitHub Desktop.

Select an option

Save MaxySpark/c264c832f90a408ca41b9fd9cb05a974 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