Skip to content

Instantly share code, notes, and snippets.

@hustcc
Created December 23, 2015 12:06
Show Gist options
  • Save hustcc/461b7ee728fa308c8723 to your computer and use it in GitHub Desktop.
Save hustcc/461b7ee728fa308c8723 to your computer and use it in GitHub Desktop.
javascript random color
function randomColor() {
return '#' + ('00000' + (Math.random() * 0x1000000 << 0).toString(16)).slice(-6);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment