A music player that connects to your cloud/distributed storage.
1const systemDark = window.matchMedia("(prefers-color-scheme: dark)");
2
3/**
4 * @param {MediaQueryListEvent | MediaQueryList} mql
5 */
6function applyDark(mql) {
7 const isDark = mql.matches;
8 document.documentElement.classList.toggle("wa-dark", isDark);
9}
10
11systemDark.addEventListener("change", applyDark);
12
13applyDark(systemDark);