UNPKG

@engie-group/ngx-gem-spaas

Version:

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

20 lines (19 loc) 558 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 const FONT_FAMILY = "Lato, Arial, sans-serif"; 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;