1
0
mirror of https://github.com/kognise/water.css.git synced 2025-02-24 22:02:50 +01:00
css-water.css/script.js
2019-05-03 01:21:48 +00:00

4 lines
265 B
JavaScript

document.getElementById('switch').addEventListener('click', function() {
const stylesheet = document.getElementById('stylesheet');
stylesheet.href = stylesheet.href.replace(/dark|light/, function(replaced) { return replaced === 'dark' ? 'light' : 'dark' });
});