Created
May 28, 2020 07:11
-
-
Save topher6345/2aee940e44f9f41888d8d57413294954 to your computer and use it in GitHub Desktop.
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
// Paste into console at https://github.com/$YOUR_USERNAME | |
const colors=["#7bc96f", "#c6e48b", "#196127", "#239a3b"]; | |
const randColor = () => colors[Math.floor(Math.random() * colors.length)]; | |
document.querySelectorAll('.day').forEach(e => e.setAttribute("fill", randColor())); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment