mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 05:38:44 +08:00
13 lines
371 B
TypeScript
13 lines
371 B
TypeScript
export function detect_darkmode() {
|
|
return window.matchMedia &&
|
|
window.matchMedia("(prefers-color-scheme: dark)").matches;
|
|
}
|
|
|
|
export function addDarkModeListener(e: (e: MediaQueryListEvent) => void) {
|
|
return window.matchMedia &&
|
|
window.matchMedia("(prefers-color-scheme: dark)").addEventListener(
|
|
"change",
|
|
e,
|
|
);
|
|
}
|