Skip to content

Instantly share code, notes, and snippets.

@t-harison
Last active March 18, 2020 01:23
Show Gist options
  • Select an option

  • Save t-harison/ef7145e28503ac589ca86d3081d6b91f to your computer and use it in GitHub Desktop.

Select an option

Save t-harison/ef7145e28503ac589ca86d3081d6b91f to your computer and use it in GitHub Desktop.
/**
* Generate random hex color
* #ffffff
*/
export const random = (): string => {
return `#${Math.floor(Math.random() * 0xFFFFFF).toString(16)}`;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment