UNPKG

cm6-theme-basic-light

Version:

Basic Light theme for the CodeMirror code editor

19 lines (16 loc) 516 B
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 };