import { writable } from 'svelte/store'; export const globalMode = writable(true); export type Theme = 'solarized-light' | 'solarized-dark'; export const theme = writable('solarized-light');