Skip to content

Commit

Permalink
chore: update theme colour typedefs for VS Code 1.93
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Sep 6, 2024
1 parent 4fd8fda commit 0d50954
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions src/types/UIColourPalette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,14 @@ interface UIColourPalette {
'editor.wordHighlightTextBackground'?: ColourLike
/** Border color of a textual occurrence for a symbol. */
'editor.wordHighlightTextBorder'?: ColourLike
/** Action List background color. */
'editorActionList.background'?: ColourLike
/** Action List background color for the focused item. */
'editorActionList.focusBackground'?: ColourLike
/** Action List foreground color for the focused item. */
'editorActionList.focusForeground'?: ColourLike
/** Action List foreground color. */
'editorActionList.foreground'?: ColourLike
/** Foreground color of brackets (1). Requires enabling bracket pair colorization. */
'editorBracketHighlight.foreground1'?: ColourLike
/** Foreground color of brackets (2). Requires enabling bracket pair colorization. */
Expand Down Expand Up @@ -1085,6 +1093,20 @@ interface UIColourPalette {
'quickInputList.focusIconForeground'?: ColourLike
/** Quick picker title background color. The quick picker widget is the container for pickers like the Command Palette. */
'quickInputTitle.background'?: ColourLike
/** Background color of active radio option. */
'radio.activeBackground'?: ColourLike
/** Border color of the active radio option. */
'radio.activeBorder'?: ColourLike
/** Foreground color of active radio option. */
'radio.activeForeground'?: ColourLike
/** Background color of inactive radio option. */
'radio.inactiveBackground'?: ColourLike
/** Border color of the inactive radio option. */
'radio.inactiveBorder'?: ColourLike
/** Foreground color of inactive radio option. */
'radio.inactiveForeground'?: ColourLike
/** Background color of inactive active radio option when hovering. */
'radio.inactiveHoverBackground'?: ColourLike
/** The hover border color for draggable sashes. */
'sash.hoverBorder'?: ColourLike
/** History item additions foreground color. */
Expand All @@ -1095,6 +1117,24 @@ interface UIColourPalette {
'scm.historyItemSelectedStatisticsBorder'?: ColourLike
/** History item statistics border color. */
'scm.historyItemStatisticsBorder'?: ColourLike
/** Source control graph foreground color (1). */
'scmGraph.foreground1'?: ColourLike
/** Source control graph foreground color (2). */
'scmGraph.foreground2'?: ColourLike
/** Source control graph foreground color (3). */
'scmGraph.foreground3'?: ColourLike
/** Base history item group color. */
'scmGraph.historyItemGroupBase'?: ColourLike
/** Local history item group color. */
'scmGraph.historyItemGroupLocal'?: ColourLike
/** Remote history item group color. */
'scmGraph.historyItemGroupRemote'?: ColourLike
/** History item hover additions foreground color. */
'scmGraph.historyItemHoverAdditionsForeground'?: ColourLike
/** History item hover deletions foreground color. */
'scmGraph.historyItemHoverDeletionsForeground'?: ColourLike
/** History item hover label foreground color. */
'scmGraph.historyItemHoverLabelForeground'?: ColourLike
/** Scrollbar slider shadow to indicate that the view is scrolled. */
'scrollbar.shadow'?: ColourLike
/** Scrollbar slider background color when clicked on. */
Expand Down Expand Up @@ -1445,10 +1485,14 @@ interface UIColourPalette {
'terminalCommandDecoration.errorBackground'?: ColourLike
/** The terminal command decoration background color for successful commands. */
'terminalCommandDecoration.successBackground'?: ColourLike
/** The foreground color of the terminal command guide that appears to the left of a command and its output on hover. */
'terminalCommandGuide.foreground'?: ColourLike
/** The background color of the terminal cursor. Allows customizing the color of a character overlapped by a block cursor. */
'terminalCursor.background'?: ColourLike
/** The foreground color of the terminal cursor. */
'terminalCursor.foreground'?: ColourLike
/** The overview ruler left-side border color. */
'terminalOverviewRuler.border'?: ColourLike
/** The overview ruler cursor color. */
'terminalOverviewRuler.cursorForeground'?: ColourLike
/** Overview ruler marker color for find matches in the terminal. */
Expand Down

0 comments on commit 0d50954

Please sign in to comment.