mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-15 08:48:53 +00:00
14 lines
355 B
TypeScript
14 lines
355 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'
|
|
);
|
|
}
|