UNPKG

ngx-gem-spaas

Version:

This library contains services, components, images and styles to provide a unified look and way-of-working throughout GEM SPaaS.

19 lines (18 loc) 496 B
export declare type ThemeType = '' | 'dark' | 'light'; export declare const DATA__HAS_MENU: { menu: string; }; export declare const DATA__THEME_DARK: { theme: string; }; export declare const DATA__THEME_LIGHT: { theme: string; }; export declare class ThemeModel { name: ThemeType; properties: any; constructor(name: ThemeType, props: any); getRgb(color: string, alpha?: number): string; } export declare const light: ThemeModel; export declare const dark: ThemeModel;