Skip to content

Commit 09521dd

Browse files
committedNov 17, 2022
doc(theme): Update README.md
1 parent 6353bf2 commit 09521dd

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed
 

‎themes/theme/README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -236,19 +236,21 @@ export interface Settings {
236236
/** Default text color. */
237237
foreground: string;
238238
/** Caret color. */
239-
caret: string;
239+
caret?: string;
240240
/** Selection background. */
241-
selection: string;
241+
selection?: string;
242242
/** Selection match background. */
243243
selectionMatch?: string;
244244
/** Background of highlighted lines. */
245-
lineHighlight: string;
245+
lineHighlight?: string;
246246
/** Gutter background. */
247-
gutterBackground: string;
247+
gutterBackground?: string;
248248
/** Text color inside gutter. */
249-
gutterForeground: string;
249+
gutterForeground?: string;
250+
/** Text active color inside gutter. */
251+
gutterActiveForeground?: string;
250252
/** Gutter right border color. */
251-
gutterBorder: string;
253+
gutterBorder?: string;
252254
}
253255
declare const createTheme: ({ dark, settings, styles }: CreateThemeOptions) => Extension;
254256
export default createTheme;

0 commit comments

Comments
 (0)
Please sign in to comment.