1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-16 23:58:14 +09:00
hotomoe/packages/client/src/scripts/is-device-darkmode.ts

4 lines
106 B
TypeScript
Raw Normal View History

2020-03-22 10:39:12 +09:00
export function isDeviceDarkmode() {
2020-03-22 18:39:37 +09:00
return window.matchMedia('(prefers-color-scheme: dark)').matches;
2020-03-22 10:39:12 +09:00
}