Skip to content

Instantly share code, notes, and snippets.

@iaian
Last active August 29, 2015 14:08
Show Gist options
  • Save iaian/bd6918d996f9e5dd2988 to your computer and use it in GitHub Desktop.
Save iaian/bd6918d996f9e5dd2988 to your computer and use it in GitHub Desktop.
GetRandomColor
function get_random_color() {
var letters = '0123456789ABCDEF'.split(''),
color = '#';
for (var i = 0; i < 6; i++ ) {
color += letters[Math.round(Math.random() * 15)];
}
return color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment