5 lines
127 B
TypeScript
5 lines
127 B
TypeScript
import { writable } from "svelte/store";
|
|
type ThemeType = "dark" | "light";
|
|
|
|
export const theme = writable<ThemeType>("dark");
|