8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
|
import { writable } from 'svelte/store';
|
||
|
|
||
|
export const globalMode = writable(true);
|
||
|
|
||
|
export type Theme = 'solarized-light' | 'solarized-dark';
|
||
|
|
||
|
export const theme = writable<Theme>('solarized-light');
|