Interface IEditorThemeRegistry

Theme editor registry interface

interface IEditorThemeRegistry {
    themes: IEditorTheme[];
    addTheme(theme: IEditorTheme): void;
    defaultTheme(): Extension;
    getTheme(name: string): Extension;
}

Implemented by

Properties

themes: IEditorTheme[]

Get all themes

Methods