Skip to content

Instantly share code, notes, and snippets.

@willbailey
Created May 30, 2012 17:13
Show Gist options
  • Save willbailey/2837712 to your computer and use it in GitHub Desktop.
Save willbailey/2837712 to your computer and use it in GitHub Desktop.
randomColor = function() {
var i = 0, val = null, out = '';
while (i < 3) {
val = Math.round(Math.random() * 255).toString(16);
if (val.length < 2) {
val = '0' + val;
}
out +=val;
i++;
}
return '#' + out.toUpperCase();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment