Skip to content

Instantly share code, notes, and snippets.

@iamchristough
Created February 14, 2019 12:07
Show Gist options
  • Save iamchristough/fa6b873e7ca786c4a9452bfd46d20704 to your computer and use it in GitHub Desktop.
Save iamchristough/fa6b873e7ca786c4a9452bfd46d20704 to your computer and use it in GitHub Desktop.
Generate a random hex code
const randomHexColorCode = () => {
let n = (Math.random() * 0xfffff * 1000000).toString(16);
return '#' + n.slice(0, 6);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment