UNPKG

@theia/core

Version:

Theia is a cloud & desktop IDE framework implemented in TypeScript.

16 lines 499 B
export declare type ThemeType = 'light' | 'dark' | 'hc' | 'hcLight'; export interface Theme { readonly id: string; readonly type: ThemeType; readonly label: string; readonly description?: string; readonly editorTheme?: string; activate?(): void; deactivate?(): void; } export declare function isHighContrast(scheme: ThemeType): boolean; export interface ThemeChangeEvent { readonly newTheme: Theme; readonly oldTheme?: Theme; } //# sourceMappingURL=theme.d.ts.map