Skip to content

Instantly share code, notes, and snippets.

@ssbozy
Created January 22, 2020 22:33
Show Gist options
  • Save ssbozy/d88f66bb2cf0d9adc99b8d2437dd7a3e to your computer and use it in GitHub Desktop.
Save ssbozy/d88f66bb2cf0d9adc99b8d2437dd7a3e to your computer and use it in GitHub Desktop.
function getRandomColor() {
return {
r: Math.floor(Math.random() *255),
g: Math.floor(Math.random() *255),
b: Math.floor(Math.random() *255)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment