Skip to content

Instantly share code, notes, and snippets.

@arturparkhisenko
Created September 26, 2018 02:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arturparkhisenko/dbbd9991cab195a04c2128823ff7ee62 to your computer and use it in GitHub Desktop.
Save arturparkhisenko/dbbd9991cab195a04c2128823ff7ee62 to your computer and use it in GitHub Desktop.
random-color.js
// https://twitter.com/jaffathecake/status/1038030104566358016?s=12
const hexColor = '#' +
Math.floor(Math.random() * 0x1000000)
.toString(16)
.padStart(6, '0');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment