19 lines
516 B
TypeScript
19 lines
516 B
TypeScript
import { Extension } from '@codemirror/state';
|
|
import { HighlightStyle } from '@codemirror/language';
|
|
|
|
/**
|
|
The editor theme styles for Basic Light.
|
|
*/
|
|
declare const basicLightTheme: Extension;
|
|
/**
|
|
The highlighting style for code in the Basic Light theme.
|
|
*/
|
|
declare const basicLightHighlightStyle: HighlightStyle;
|
|
/**
|
|
Extension to enable the Basic Light theme (both the editor theme and
|
|
the highlight style).
|
|
*/
|
|
declare const basicLight: Extension;
|
|
|
|
export { basicLight, basicLightHighlightStyle, basicLightTheme };
|