1 2 3 4 5
import { writable } from 'svelte/store'; type Style = 'light' | 'dark' | 'white'; export const carouselMediaStyle = writable<Style>('light');