Skip to content

Instantly share code, notes, and snippets.

@AitorAlejandro
Created March 11, 2022 10:26
Show Gist options
  • Save AitorAlejandro/de256088e9cad9b2921a88f4b1a31227 to your computer and use it in GitHub Desktop.
Save AitorAlejandro/de256088e9cad9b2921a88f4b1a31227 to your computer and use it in GitHub Desktop.
Generates a random hex color
const randomHexColor = (): string => `#${Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, '0')}`;
randomHexColor(); // -> #dc7c40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment