Last active
April 22, 2017 20:49
-
-
Save scriptype/0111ef9f07b1865c2e67c47a35e2fad8 to your computer and use it in GitHub Desktop.
50 Shades of Grey
This file contains hidden or 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
new Array(50) | |
.join(' ') | |
.split(' ') | |
.map((n, i) => | |
('0' + (i * Math.floor(255 / 50)).toString(16)) | |
.slice(-2) | |
.repeat(3) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment