Skip to content

Instantly share code, notes, and snippets.

@dan-laskowski
Created May 5, 2021 12:07
Show Gist options
  • Save dan-laskowski/a70b7fd59e97ee15fd7637b9e8ab0e52 to your computer and use it in GitHub Desktop.
Save dan-laskowski/a70b7fd59e97ee15fd7637b9e8ab0e52 to your computer and use it in GitHub Desktop.
[Generate a random HEX color] #javascript #js #generate #hex
// Generate a random HEX color
randomColor = () => `#${Math.random().toString(16).slice(2, 8).padStart(6, '0')}`;
// Or
const randomColor = () => `#${(~~(Math.random()*(1<<24))).toString(16)}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment