mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-27 12:11:14 +00:00
11 lines
359 B
TypeScript
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) {}
|
|
})();
|
|
`
|