2024-11-13 16:58:53 +01:00

59 lines
1.7 KiB
TypeScript

import { writable } from "svelte/store";
import { themes } from "$lib/definitions/themes";
import type { Theme } from "$lib/types";
function createThemeStore() {
// Default theme
const defaultTheme = themes.catppuccin;
// Initialize with default theme
const { subscribe, set } = writable<Theme>(defaultTheme);
// Initialize theme on client-side only
if (typeof window !== "undefined") {
const storedTheme = localStorage.getItem("theme");
if (storedTheme && themes[storedTheme]) {
set(themes[storedTheme]);
}
}
return {
subscribe,
setTheme: (themeName: string) => {
const theme = themes[themeName];
if (theme) {
if (typeof window !== "undefined") {
localStorage.setItem("theme", themeName);
// Add this line to set the data-theme attribute
document.documentElement.setAttribute("data-theme", themeName);
}
set(theme);
applyTheme(theme);
}
},
init: () => {
const storedTheme =
typeof window !== "undefined" ? localStorage.getItem("theme") : null;
const theme = (storedTheme && themes[storedTheme]) || defaultTheme;
if (typeof window !== "undefined") {
// Add this line to set the data-theme attribute on init
document.documentElement.setAttribute(
"data-theme",
storedTheme || "catppuccin",
);
}
applyTheme(theme);
},
};
}
function applyTheme(theme: Theme) {
if (typeof window !== "undefined") {
const root = document.documentElement;
Object.entries(theme.colors).forEach(([key, value]) => {
root.style.setProperty(`--${key}`, value);
});
}
}
export const themeStore = createThemeStore();