Skip to content

Instantly share code, notes, and snippets.

@keremistan
Created March 18, 2021 08:42
Show Gist options
  • Save keremistan/129d426dae04bec9efd887e6972ac31b to your computer and use it in GitHub Desktop.
Save keremistan/129d426dae04bec9efd887e6972ac31b to your computer and use it in GitHub Desktop.
Getting one random color.
function getRandomColor(): string {
// source: <https://stackoverflow.com/a/5365036/6656967>
return "#" + ((1 << 24) * Math.random() | 0).toString(16);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment