UNPKG

spectra-ui

Version:

Spectra UI is a component library built in Vue 3 and TypeScript.

11 lines (8 loc) 198 B
import { ITheme } from '@/interface/theme'; export class ThemeEngine { protected static theme: ITheme; public static setTheme(theme: ITheme): boolean { this.theme = theme; return true; } }