UNPKG

svelte-os-themes

Version:

[![Live Demo](https://img.shields.io/badge/Live%20Demo-Open-0ea5e9)](https://svelte-os-themes.vercel.app)

13 lines (12 loc) 290 B
import { getThemeContext } from './ThemeContext.svelte.js'; export const useTheme = () => { const ctx = getThemeContext(); return { get current() { return ctx.current; }, set current(value) { ctx.current = value; }, }; };