main #390

Merged
alexlebens merged 14 commits from main into release 2026-03-16 15:53:35 +00:00
Showing only changes of commit a6c889f76a - Show all commits

View File

@@ -43,13 +43,12 @@
</button>
<script is:inline>
const applyTheme = () => {
(() => {
const isDark =
localStorage.theme === 'dark' ||
(!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches);
document.documentElement.classList.toggle('dark', isDark);
};
applyTheme();
})();
</script>
<script>