init: initial commit
This commit is contained in:
7
src/lib/settings/index.ts
Normal file
7
src/lib/settings/index.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { writable } from 'svelte/store';
|
||||
|
||||
export const globalMode = writable(true);
|
||||
|
||||
export type Theme = 'solarized-light' | 'solarized-dark';
|
||||
|
||||
export const theme = writable<Theme>('solarized-light');
|
Reference in New Issue
Block a user