Skip to content

Instantly share code, notes, and snippets.

@Gummiees
Created October 29, 2020 09:30
Show Gist options
  • Save Gummiees/a494736c1296a11a7722937c9efa9bf3 to your computer and use it in GitHub Desktop.
Save Gummiees/a494736c1296a11a7722937c9efa9bf3 to your computer and use it in GitHub Desktop.
Generate random color
public getRandomColor(): string {
const letters = '0123456789ABCDEF';
let color = '#';
for (let i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * 16)];
}
return color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment