File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -236,19 +236,21 @@ export interface Settings {
236
236
/** Default text color. */
237
237
foreground: string ;
238
238
/** Caret color. */
239
- caret: string ;
239
+ caret? : string ;
240
240
/** Selection background. */
241
- selection: string ;
241
+ selection? : string ;
242
242
/** Selection match background. */
243
243
selectionMatch? : string ;
244
244
/** Background of highlighted lines. */
245
- lineHighlight: string ;
245
+ lineHighlight? : string ;
246
246
/** Gutter background. */
247
- gutterBackground: string ;
247
+ gutterBackground? : string ;
248
248
/** Text color inside gutter. */
249
- gutterForeground: string ;
249
+ gutterForeground? : string ;
250
+ /** Text active color inside gutter. */
251
+ gutterActiveForeground? : string ;
250
252
/** Gutter right border color. */
251
- gutterBorder: string ;
253
+ gutterBorder? : string ;
252
254
}
253
255
declare const createTheme: ({ dark, settings, styles }: CreateThemeOptions ) => Extension ;
254
256
export default createTheme ;
You can’t perform that action at this time.
0 commit comments