diondiondion beb23500b1 [Glitch] Fix isDarkMode utility
Port 41639655ffaa9914632fe937c9583b901b36f5cc to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2026-01-13 18:35:16 +01:00

12 lines
339 B
TypeScript

export function getUserTheme() {
const { userTheme } = document.documentElement.dataset;
return userTheme;
}
export function isDarkMode() {
const { userTheme } = document.documentElement.dataset;
return userTheme === 'system'
? window.matchMedia('(prefers-color-scheme: dark)').matches
: userTheme !== 'mastodon-light';
}