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