Skip to content

Instantly share code, notes, and snippets.

@dosjota
Created July 1, 2015 14:48
Show Gist options
  • Save dosjota/6da6f944d058b22248d9 to your computer and use it in GitHub Desktop.
Save dosjota/6da6f944d058b22248d9 to your computer and use it in GitHub Desktop.
Genera un color en hexadecimal de forma aleatoria
var color = function() {
var hex = '0123456789ABCDEF',
color = '#';
for (i=0;i<6;i++){
color+=hex.charAt(parseInt(Math.floor(Math.random() * hex.length)));
}
return color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment