Skip to content

Instantly share code, notes, and snippets.

@Khangeldy
Created January 3, 2018 12:57
Show Gist options
  • Save Khangeldy/c4e0b7f60fc67f19a1efa4fadb1fcaa5 to your computer and use it in GitHub Desktop.
Save Khangeldy/c4e0b7f60fc67f19a1efa4fadb1fcaa5 to your computer and use it in GitHub Desktop.
Get random color in hex
function randomColor() {
return('#' + Math.floor(Math.random() * 16777215).toString(16));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment