Skip to content

Instantly share code, notes, and snippets.

@topher6345
Created May 28, 2020 07:11
Show Gist options
  • Save topher6345/2aee940e44f9f41888d8d57413294954 to your computer and use it in GitHub Desktop.
Save topher6345/2aee940e44f9f41888d8d57413294954 to your computer and use it in GitHub Desktop.
// 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