Created
December 18, 2018 23:37
-
-
Save stephencweiss/833b16bb2f25792a89da89a78ebc7385 to your computer and use it in GitHub Desktop.
A random color generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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