@covalent/code-editor
Version:
Teradata UI Platform Code Editor Module
109 lines (108 loc) • 3.01 kB
TypeScript
export declare const covalentThemeName = "tdaa-lite";
export declare const covalentThemeConf: {
base: string;
inherit: boolean;
rules: ({
token: string;
foreground: string;
background: string;
fontStyle?: undefined;
} | {
token: string;
foreground: string;
background?: undefined;
fontStyle?: undefined;
} | {
token: string;
foreground: string;
fontStyle: string;
background?: undefined;
} | {
token: string;
fontStyle: string;
foreground?: undefined;
background?: undefined;
})[];
colors: {
comment: string;
'editor.foreground': string;
'editor.background': string;
'editorLineNumber.activeForeground': string;
'editorLineNumber.foreground': string;
'editor.lineHighlightBackground': string;
'inputValidation.errorBackground': string;
'inputValidation.errorBorder': string;
};
};
export declare const cvEditorDarkTheme: {
base: string;
inherit: boolean;
rules: ({
token: string;
foreground: string;
background: string;
fontStyle?: undefined;
} | {
token: string;
foreground: string;
background?: undefined;
fontStyle?: undefined;
} | {
token: string;
foreground: string;
fontStyle: string;
background?: undefined;
} | {
token: string;
fontStyle: string;
foreground?: undefined;
background?: undefined;
})[];
colors: {
comment: string;
'editor.background': string;
'editor.foreground': string;
'editorCursor.foreground': string;
'editorLineNumber.activeForeground': string;
'editorLineNumber.foreground': string;
'editor.lineHighlightBackground': string;
'inputValidation.errorBackground': string;
'inputValidation.errorBorder': string;
};
};
export declare const cvEditorLightTheme: {
base: string;
inherit: boolean;
rules: ({
token: string;
foreground: string;
background: string;
fontStyle?: undefined;
} | {
token: string;
foreground: string;
background?: undefined;
fontStyle?: undefined;
} | {
token: string;
foreground: string;
fontStyle: string;
background?: undefined;
} | {
token: string;
fontStyle: string;
foreground?: undefined;
background?: undefined;
})[];
colors: {
comment: string;
'editor.background': string;
'editor.foreground': string;
'editorCursor.foreground': string;
'editorLineNumber.activeForeground': string;
'editorLineNumber.foreground': string;
'editor.lineHighlightBackground': string;
'inputValidation.errorBackground': string;
'inputValidation.errorBorder': string;
};
};