Skip to content

Instantly share code, notes, and snippets.

@gildniy
Last active March 1, 2019 22:29
Show Gist options
  • Save gildniy/c9d855cb83b9121ce88487743d56982b to your computer and use it in GitHub Desktop.
Save gildniy/c9d855cb83b9121ce88487743d56982b to your computer and use it in GitHub Desktop.
Generate random Hex Color string value in Javascript
randomHexColor:string = () => `#${(Math.random()*0xFFFFFF<<0).toString(16)}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment