UNPKG

svelte-os-themes

Version:

[Svelte](https://svelte.dev/) 5 theme helper.

9 lines (8 loc) 296 B
import { getContext } from 'svelte'; import { ThemeContextError } from './ThemeContextError.js'; export function useTheme() { const context = getContext('theme'); if (!context) throw new ThemeContextError("'useTheme' must be used within a 'ThemeProvider'"); return context; }