7 lines
264 B
JavaScript
7 lines
264 B
JavaScript
import { writable } from "svelte/store";
|
|
|
|
export const theme_switch_is_resize = writable(false);
|
|
export const theme_switch_is_transparent = writable(false);
|
|
export const theme_switch_is_dark = writable(true);
|
|
export const theme_switch_is_update = writable(false);
|