UNPKG

@alauda/ui

Version:

Angular UI components by Alauda Frontend Team.

4 lines (3 loc) 168 B
export type Theme = 'dark' | 'light'; export type ThemeMode = 'dark' | 'light' | 'system'; export type ThemeSet<T> = Record<Theme, T> | ((theme: Theme) => T) | [T, T];