Skip to content

Instantly share code, notes, and snippets.

@stephencweiss
Created December 18, 2018 23:37
Show Gist options
  • Save stephencweiss/833b16bb2f25792a89da89a78ebc7385 to your computer and use it in GitHub Desktop.
Save stephencweiss/833b16bb2f25792a89da89a78ebc7385 to your computer and use it in GitHub Desktop.
A random color generator
const red = Math.rand() * 255
const green = Math.rand() * 255
const blue = Math.rand() * 255
return [red, green, blue]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment