2023-02-11 16:11:55 +00:00
|
|
|
import { writable } from 'svelte/store';
|
|
|
|
|
|
|
|
export const globalMode = writable(true);
|
|
|
|
|
2023-02-13 18:08:29 +00:00
|
|
|
export const themes = ['solarized-light', 'solarized-dark'] as const;
|
|
|
|
export type Theme = (typeof themes)[number];
|
2023-02-11 16:11:55 +00:00
|
|
|
|
|
|
|
export const theme = writable<Theme>('solarized-light');
|