1
0
mirror of https://github.com/hotomoe/hotomoe synced 2025-01-06 01:42:55 +09:00
hotomoe/src/client/scripts/is-device-darkmode.ts
2020-03-22 18:39:37 +09:00

4 lines
106 B
TypeScript

export function isDeviceDarkmode() {
return window.matchMedia('(prefers-color-scheme: dark)').matches;
}