summaryrefslogtreecommitdiff
path: root/packages/client/src/scripts/is-device-darkmode.ts
blob: 854f38e5175a41d9c80e1ba6709aea525f61f740 (plain)
1
2
3
export function isDeviceDarkmode() {
	return window.matchMedia('(prefers-color-scheme: dark)').matches;
}