Skip to content

Instantly share code, notes, and snippets.

@toruta39
Created September 10, 2015 09:16
Show Gist options
  • Save toruta39/7708ea1facdf19728853 to your computer and use it in GitHub Desktop.
Save toruta39/7708ea1facdf19728853 to your computer and use it in GitHub Desktop.
function randomRGB() {
const c = 0xffffff * Math.random();
return [c >> 16, c >> 8 & 255, c & 255];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment