UNPKG

mode-watcher

Version:

SSR-friendly light and dark mode for SvelteKit

10 lines (9 loc) 276 B
import { box } from "svelte-toolbelt"; /** * The key used to store the `mode` in localStorage. */ export const modeStorageKey = box("mode-watcher-mode"); /** * The key used to store the `theme` in localStorage. */ export const themeStorageKey = box("mode-watcher-theme");