Skip to content

Instantly share code, notes, and snippets.

@sathvikc
Created September 7, 2015 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sathvikc/64c51779b2ff1676c027 to your computer and use it in GitHub Desktop.
Save sathvikc/64c51779b2ff1676c027 to your computer and use it in GitHub Desktop.
Random Colors using Java Script
function getRandomColor() {
var letters = '0123456789ABCDEF'.split('');
var 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