mirror of
https://github.com/we-promise/sure.git
synced 2026-04-16 02:24:08 +00:00
5 lines
219 B
Plaintext
5 lines
219 B
Plaintext
<script>
|
|
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
|
document.documentElement.setAttribute("data-theme", "dark");
|
|
}
|
|
</script> |