1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-15 15:18:08 +09:00
hotomoe/packages/frontend/src/scripts/is-device-darkmode.ts
2022-12-27 14:36:33 +09:00

4 lines
106 B
TypeScript

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