2026-04-24 16:52:40 -05:00
|
|
|
const THEME_KEY = "openconcho:theme";
|
2026-04-24 21:30:48 -05:00
|
|
|
|
|
|
|
|
export type Theme = "dark" | "light";
|
|
|
|
|
|
|
|
|
|
export function getStoredTheme(): Theme {
|
|
|
|
|
const stored = localStorage.getItem(THEME_KEY) as Theme | null;
|
|
|
|
|
if (stored === "dark" || stored === "light") return stored;
|
|
|
|
|
return window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function applyTheme(theme: Theme): void {
|
|
|
|
|
document.documentElement.setAttribute("data-theme", theme);
|
|
|
|
|
localStorage.setItem(THEME_KEY, theme);
|
|
|
|
|
}
|