mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-23 19:18:14 +09:00
4 lines
127 B
TypeScript
4 lines
127 B
TypeScript
|
export function isDeviceDarkmode() {
|
||
|
return window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
|
||
|
}
|