UNPKG

@3mo/theme

Version:

Tools & tokens for theming 3MO components & applications.

13 lines (12 loc) 301 B
import { BackgroundStorage } from './Background.js'; import { AccentStorage } from './Accent.js'; /** * Utilities to control the theme of the application. * * @ssr true */ export class Theme { } Theme.background = new BackgroundStorage; Theme.accent = new AccentStorage; globalThis.Theme = Theme;