w/src/lib/components/state.js
2024-12-24 05:01:19 +05:00

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);