Skip to content

Instantly share code, notes, and snippets.

@alicethewhale
Created December 14, 2018 11:14
Show Gist options
  • Save alicethewhale/10d9c66a42596a10a878284118f4ad73 to your computer and use it in GitHub Desktop.
Save alicethewhale/10d9c66a42596a10a878284118f4ad73 to your computer and use it in GitHub Desktop.
const colourPickers = document.querySelectorAll('.colour-picker');
function changeColour() {
document.documentElement.style.setProperty(`--${this.name}`, this.value);
}
colourPickers.forEach(picker => picker.addEventListener('change', changeColour));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment