Skip to content

Commit

Permalink
doc(theme): Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Nov 17, 2022
1 parent 6353bf2 commit 09521dd
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions themes/theme/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,19 +236,21 @@ export interface Settings {
/** Default text color. */
foreground: string;
/** Caret color. */
caret: string;
caret?: string;
/** Selection background. */
selection: string;
selection?: string;
/** Selection match background. */
selectionMatch?: string;
/** Background of highlighted lines. */
lineHighlight: string;
lineHighlight?: string;
/** Gutter background. */
gutterBackground: string;
gutterBackground?: string;
/** Text color inside gutter. */
gutterForeground: string;
gutterForeground?: string;
/** Text active color inside gutter. */
gutterActiveForeground?: string;
/** Gutter right border color. */
gutterBorder: string;
gutterBorder?: string;
}
declare const createTheme: ({ dark, settings, styles }: CreateThemeOptions) => Extension;
export default createTheme;
Expand Down

0 comments on commit 09521dd

Please sign in to comment.