UNPKG

amt-ui

Version:

Angular material, tailwind template

10 lines (9 loc) 333 B
export interface AmtTheme { title?: string; mode: AmtThemeMode; color: AmtThemeColor; direction: AmtThemeDirection; } export type AmtThemeMode = 'dark' | 'light' | 'system'; export type AmtThemeColor = 'base' | 'violet' | 'red' | 'blue' | 'orange' | 'yellow' | 'green'; export type AmtThemeDirection = 'ltr' | 'rtl';