mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-22 20:14:19 +08:00
5 lines
137 B
TypeScript
5 lines
137 B
TypeScript
export function detect_darkmode() {
|
|
return window.matchMedia &&
|
|
window.matchMedia("(prefers-color-scheme: dark)").matches;
|
|
}
|