Last active
August 29, 2015 14:08
-
-
Save iaian/bd6918d996f9e5dd2988 to your computer and use it in GitHub Desktop.
GetRandomColor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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