Files
logos-web/apps/web/utils/theme.ts
T
2026-04-20 22:24:39 +09:00

11 lines
359 B
TypeScript

export const themeInitScript = `
(function() {
try {
var theme = localStorage.getItem('theme');
var systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
var initialTheme = theme || systemTheme;
document.documentElement.setAttribute('data-theme', initialTheme);
} catch (e) {}
})();
`