Rename bg/fg palette keys to background/foreground
The canonical colors.toml keys are now background/foreground, including all permutations (dark_background, darker_background, lighter_background, dark_foreground, light_foreground, bright_foreground). The old short names are gone entirely, not kept as aliases; legacy alacritty-generated themes still resolve through the ANSI color0/color7 fallback. Theme files are also regrouped: accent/selection/muted first, then the backgrounds, then the foregrounds, then the named colors. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5
parent
72d7646c64
commit
afa2839a5a
@@ -6,10 +6,10 @@
|
||||
"semanticTokenColors": {
|
||||
"parameter": "{{ cyan }}",
|
||||
"parameter.declaration": "{{ cyan }}",
|
||||
"variable": "{{ fg }}",
|
||||
"variable.declaration": "{{ fg }}",
|
||||
"variable": "{{ foreground }}",
|
||||
"variable.declaration": "{{ foreground }}",
|
||||
"variable.readonly": "{{ bright_yellow }}",
|
||||
"variable.defaultLibrary": "{{ fg }}",
|
||||
"variable.defaultLibrary": "{{ foreground }}",
|
||||
"property": "{{ cyan }}",
|
||||
"property.declaration": "{{ cyan }}",
|
||||
"property.readonly": "{{ cyan }}",
|
||||
@@ -27,7 +27,7 @@
|
||||
"enumMember": "{{ orange }}",
|
||||
"type": "{{ yellow }}",
|
||||
"type.declaration": "{{ yellow }}",
|
||||
"type.defaultLibrary": "{{ fg }}",
|
||||
"type.defaultLibrary": "{{ foreground }}",
|
||||
"typeParameter": "{{ yellow }}",
|
||||
"namespace": "{{ blue }}",
|
||||
"macro": "{{ cyan }}",
|
||||
@@ -42,53 +42,53 @@
|
||||
"comment.documentation": {"foreground": "{{ muted }}", "fontStyle": "italic"}
|
||||
},
|
||||
"colors": {
|
||||
"foreground": "{{ fg }}",
|
||||
"disabledForeground": "{{ dark_fg }}",
|
||||
"foreground": "{{ foreground }}",
|
||||
"disabledForeground": "{{ dark_foreground }}",
|
||||
"focusBorder": "{{ accent }}80",
|
||||
"widget.shadow": "{{ bg }}80",
|
||||
"widget.shadow": "{{ background }}80",
|
||||
"selection.background": "{{ selection_background }}80",
|
||||
"descriptionForeground": "{{ muted }}",
|
||||
"errorForeground": "{{ red }}",
|
||||
"icon.foreground": "{{ fg }}",
|
||||
"icon.foreground": "{{ foreground }}",
|
||||
"sash.hoverBorder": "{{ accent }}",
|
||||
|
||||
"textBlockQuote.background": "{{ bg }}",
|
||||
"textBlockQuote.background": "{{ background }}",
|
||||
"textBlockQuote.border": "{{ accent }}",
|
||||
"textCodeBlock.background": "{{ bg }}",
|
||||
"textCodeBlock.background": "{{ background }}",
|
||||
"textLink.activeForeground": "{{ bright_blue }}",
|
||||
"textLink.foreground": "{{ blue }}",
|
||||
"textPreformat.foreground": "{{ cyan }}",
|
||||
"textPreformat.background": "{{ bg }}",
|
||||
"textPreformat.background": "{{ background }}",
|
||||
"textSeparator.foreground": "{{ muted }}",
|
||||
|
||||
"toolbar.hoverBackground": "{{ bg }}",
|
||||
"toolbar.hoverBackground": "{{ background }}",
|
||||
"toolbar.activeBackground": "{{ muted }}",
|
||||
|
||||
"button.background": "{{ accent }}",
|
||||
"button.foreground": "{{ bg }}",
|
||||
"button.foreground": "{{ background }}",
|
||||
"button.hoverBackground": "{{ blue }}",
|
||||
"button.secondaryForeground": "{{ fg }}",
|
||||
"button.secondaryForeground": "{{ foreground }}",
|
||||
"button.secondaryBackground": "{{ muted }}",
|
||||
"button.secondaryHoverBackground": "{{ bg }}",
|
||||
"button.secondaryHoverBackground": "{{ background }}",
|
||||
"button.border": "{{ accent }}20",
|
||||
"checkbox.background": "{{ bg }}",
|
||||
"checkbox.foreground": "{{ fg }}",
|
||||
"checkbox.background": "{{ background }}",
|
||||
"checkbox.foreground": "{{ foreground }}",
|
||||
"checkbox.border": "{{ muted }}",
|
||||
"checkbox.selectBackground": "{{ accent }}",
|
||||
"checkbox.selectBorder": "{{ accent }}",
|
||||
|
||||
"dropdown.background": "{{ bg }}",
|
||||
"dropdown.listBackground": "{{ bg }}",
|
||||
"dropdown.background": "{{ background }}",
|
||||
"dropdown.listBackground": "{{ background }}",
|
||||
"dropdown.border": "{{ muted }}",
|
||||
"dropdown.foreground": "{{ fg }}",
|
||||
"dropdown.foreground": "{{ foreground }}",
|
||||
|
||||
"input.background": "{{ bg }}",
|
||||
"input.background": "{{ background }}",
|
||||
"input.border": "{{ muted }}",
|
||||
"input.foreground": "{{ fg }}",
|
||||
"input.foreground": "{{ foreground }}",
|
||||
"input.placeholderForeground": "{{ muted }}",
|
||||
"inputOption.activeBackground": "{{ accent }}40",
|
||||
"inputOption.activeBorder": "{{ accent }}",
|
||||
"inputOption.activeForeground": "{{ fg }}",
|
||||
"inputOption.activeForeground": "{{ foreground }}",
|
||||
"inputOption.hoverBackground": "{{ muted }}",
|
||||
"inputValidation.errorBackground": "{{ red }}20",
|
||||
"inputValidation.errorForeground": "{{ red }}",
|
||||
@@ -100,34 +100,34 @@
|
||||
"inputValidation.warningForeground": "{{ yellow }}",
|
||||
"inputValidation.warningBorder": "{{ yellow }}",
|
||||
|
||||
"scrollbar.shadow": "{{ bg }}",
|
||||
"scrollbar.shadow": "{{ background }}",
|
||||
"scrollbarSlider.activeBackground": "{{ accent }}80",
|
||||
"scrollbarSlider.background": "{{ muted }}40",
|
||||
"scrollbarSlider.hoverBackground": "{{ muted }}80",
|
||||
|
||||
"badge.background": "{{ accent }}",
|
||||
"badge.foreground": "{{ bg }}",
|
||||
"badge.foreground": "{{ background }}",
|
||||
|
||||
"progressBar.background": "{{ accent }}",
|
||||
|
||||
"list.activeSelectionBackground": "{{ accent }}30",
|
||||
"list.activeSelectionForeground": "{{ fg }}",
|
||||
"list.activeSelectionIconForeground": "{{ fg }}",
|
||||
"list.activeSelectionForeground": "{{ foreground }}",
|
||||
"list.activeSelectionIconForeground": "{{ foreground }}",
|
||||
"list.dropBackground": "{{ accent }}20",
|
||||
"list.focusBackground": "{{ accent }}20",
|
||||
"list.focusForeground": "{{ fg }}",
|
||||
"list.focusForeground": "{{ foreground }}",
|
||||
"list.focusOutline": "{{ accent }}60",
|
||||
"list.highlightForeground": "{{ accent }}",
|
||||
"list.hoverBackground": "{{ bg }}",
|
||||
"list.hoverForeground": "{{ fg }}",
|
||||
"list.hoverBackground": "{{ background }}",
|
||||
"list.hoverForeground": "{{ foreground }}",
|
||||
"list.inactiveSelectionBackground": "{{ muted }}40",
|
||||
"list.inactiveSelectionForeground": "{{ fg }}",
|
||||
"list.inactiveSelectionForeground": "{{ foreground }}",
|
||||
"list.inactiveFocusBackground": "{{ muted }}40",
|
||||
"list.inactiveFocusOutline": "{{ muted }}",
|
||||
"list.invalidItemForeground": "{{ red }}",
|
||||
"list.errorForeground": "{{ red }}",
|
||||
"list.warningForeground": "{{ yellow }}",
|
||||
"listFilterWidget.background": "{{ bg }}",
|
||||
"listFilterWidget.background": "{{ background }}",
|
||||
"listFilterWidget.outline": "{{ accent }}",
|
||||
"listFilterWidget.noMatchesOutline": "{{ red }}",
|
||||
"list.filterMatchBackground": "{{ accent }}30",
|
||||
@@ -135,34 +135,34 @@
|
||||
"tree.indentGuidesStroke": "{{ muted }}",
|
||||
"tree.inactiveIndentGuidesStroke": "{{ muted }}60",
|
||||
"tree.tableColumnsBorder": "{{ muted }}",
|
||||
"tree.tableOddRowsBackground": "{{ bg }}40",
|
||||
"tree.tableOddRowsBackground": "{{ background }}40",
|
||||
|
||||
"activityBar.background": "{{ bg }}",
|
||||
"activityBar.background": "{{ background }}",
|
||||
"activityBar.dropBorder": "{{ accent }}",
|
||||
"activityBar.foreground": "{{ fg }}",
|
||||
"activityBar.foreground": "{{ foreground }}",
|
||||
"activityBar.inactiveForeground": "{{ muted }}",
|
||||
"activityBar.border": "{{ bg }}",
|
||||
"activityBar.border": "{{ background }}",
|
||||
"activityBarBadge.background": "{{ accent }}",
|
||||
"activityBarBadge.foreground": "{{ bg }}",
|
||||
"activityBarBadge.foreground": "{{ background }}",
|
||||
"activityBar.activeBorder": "{{ accent }}",
|
||||
"activityBar.activeBackground": "{{ bg }}40",
|
||||
"activityBar.activeBackground": "{{ background }}40",
|
||||
|
||||
"sideBar.background": "{{ bg }}",
|
||||
"sideBar.foreground": "{{ fg }}",
|
||||
"sideBar.border": "{{ bg }}",
|
||||
"sideBar.background": "{{ background }}",
|
||||
"sideBar.foreground": "{{ foreground }}",
|
||||
"sideBar.border": "{{ background }}",
|
||||
"sideBar.dropBackground": "{{ accent }}20",
|
||||
"sideBarTitle.foreground": "{{ fg }}",
|
||||
"sideBarSectionHeader.background": "{{ bg }}",
|
||||
"sideBarSectionHeader.foreground": "{{ fg }}",
|
||||
"sideBarTitle.foreground": "{{ foreground }}",
|
||||
"sideBarSectionHeader.background": "{{ background }}",
|
||||
"sideBarSectionHeader.foreground": "{{ foreground }}",
|
||||
"sideBarSectionHeader.border": "{{ muted }}40",
|
||||
|
||||
"minimap.findMatchHighlight": "{{ accent }}80",
|
||||
"minimap.selectionHighlight": "{{ accent }}60",
|
||||
"minimap.errorHighlight": "{{ red }}",
|
||||
"minimap.warningHighlight": "{{ yellow }}",
|
||||
"minimap.background": "{{ bg }}",
|
||||
"minimap.background": "{{ background }}",
|
||||
"minimap.selectionOccurrenceHighlight": "{{ accent }}40",
|
||||
"minimap.foregroundOpacity": "{{ bg }}c0",
|
||||
"minimap.foregroundOpacity": "{{ background }}c0",
|
||||
"minimapSlider.background": "{{ muted }}20",
|
||||
"minimapSlider.hoverBackground": "{{ muted }}40",
|
||||
"minimapSlider.activeBackground": "{{ muted }}60",
|
||||
@@ -172,44 +172,44 @@
|
||||
|
||||
"editorGroup.border": "{{ muted }}40",
|
||||
"editorGroup.dropBackground": "{{ accent }}20",
|
||||
"editorGroup.dropIntoPromptForeground": "{{ fg }}",
|
||||
"editorGroup.dropIntoPromptBackground": "{{ bg }}",
|
||||
"editorGroup.dropIntoPromptForeground": "{{ foreground }}",
|
||||
"editorGroup.dropIntoPromptBackground": "{{ background }}",
|
||||
"editorGroup.dropIntoPromptBorder": "{{ accent }}",
|
||||
"editorGroupHeader.noTabsBackground": "{{ bg }}",
|
||||
"editorGroupHeader.tabsBackground": "{{ bg }}",
|
||||
"editorGroupHeader.tabsBorder": "{{ bg }}",
|
||||
"editorGroupHeader.border": "{{ bg }}",
|
||||
"editorGroup.emptyBackground": "{{ bg }}",
|
||||
"tab.activeBackground": "{{ bg }}",
|
||||
"tab.unfocusedActiveBackground": "{{ bg }}",
|
||||
"tab.activeForeground": "{{ fg }}",
|
||||
"editorGroupHeader.noTabsBackground": "{{ background }}",
|
||||
"editorGroupHeader.tabsBackground": "{{ background }}",
|
||||
"editorGroupHeader.tabsBorder": "{{ background }}",
|
||||
"editorGroupHeader.border": "{{ background }}",
|
||||
"editorGroup.emptyBackground": "{{ background }}",
|
||||
"tab.activeBackground": "{{ background }}",
|
||||
"tab.unfocusedActiveBackground": "{{ background }}",
|
||||
"tab.activeForeground": "{{ foreground }}",
|
||||
"tab.activeBorder": "{{ accent }}",
|
||||
"tab.activeBorderTop": "{{ accent }}",
|
||||
"tab.unfocusedActiveBorder": "{{ muted }}",
|
||||
"tab.unfocusedActiveBorderTop": "{{ muted }}",
|
||||
"tab.border": "{{ bg }}",
|
||||
"tab.inactiveBackground": "{{ bg }}",
|
||||
"tab.border": "{{ background }}",
|
||||
"tab.inactiveBackground": "{{ background }}",
|
||||
"tab.inactiveForeground": "{{ muted }}",
|
||||
"tab.unfocusedActiveForeground": "{{ fg }}",
|
||||
"tab.unfocusedActiveForeground": "{{ foreground }}",
|
||||
"tab.unfocusedInactiveForeground": "{{ muted }}",
|
||||
"tab.hoverBackground": "{{ muted }}40",
|
||||
"tab.unfocusedHoverBackground": "{{ muted }}40",
|
||||
"tab.hoverForeground": "{{ fg }}",
|
||||
"tab.hoverForeground": "{{ foreground }}",
|
||||
"tab.hoverBorder": "{{ accent }}40",
|
||||
"tab.activeModifiedBorder": "{{ yellow }}",
|
||||
"tab.inactiveModifiedBorder": "{{ yellow }}80",
|
||||
"tab.unfocusedActiveModifiedBorder": "{{ yellow }}80",
|
||||
"tab.unfocusedInactiveModifiedBorder": "{{ yellow }}60",
|
||||
"tab.lastPinnedBorder": "{{ muted }}",
|
||||
"editorPane.background": "{{ bg }}",
|
||||
"editorPane.background": "{{ background }}",
|
||||
|
||||
"editor.background": "{{ bg }}",
|
||||
"editor.foreground": "{{ fg }}",
|
||||
"editor.background": "{{ background }}",
|
||||
"editor.foreground": "{{ foreground }}",
|
||||
"editorLineNumber.foreground": "{{ muted }}",
|
||||
"editorLineNumber.activeForeground": "{{ fg }}",
|
||||
"editorLineNumber.activeForeground": "{{ foreground }}",
|
||||
"editorLineNumber.dimmedForeground": "{{ muted }}80",
|
||||
"editorCursor.background": "{{ bg }}",
|
||||
"editorCursor.foreground": "{{ bright_fg }}",
|
||||
"editorCursor.background": "{{ background }}",
|
||||
"editorCursor.foreground": "{{ bright_foreground }}",
|
||||
"editor.selectionBackground": "{{ selection_background }}60",
|
||||
"editor.selectionForeground": "{{ selection_foreground }}",
|
||||
"editor.inactiveSelectionBackground": "{{ selection_background }}30",
|
||||
@@ -230,8 +230,8 @@
|
||||
"searchEditor.findMatchBackground": "{{ yellow }}40",
|
||||
"searchEditor.findMatchBorder": "{{ yellow }}",
|
||||
"editor.hoverHighlightBackground": "{{ accent }}20",
|
||||
"editor.lineHighlightBackground": "{{ bg }}60",
|
||||
"editor.lineHighlightBorder": "{{ bg }}00",
|
||||
"editor.lineHighlightBackground": "{{ background }}60",
|
||||
"editor.lineHighlightBorder": "{{ background }}00",
|
||||
"editorLink.activeForeground": "{{ blue }}",
|
||||
"editor.rangeHighlightBackground": "{{ accent }}10",
|
||||
"editor.rangeHighlightBorder": "{{ accent }}20",
|
||||
@@ -282,7 +282,7 @@
|
||||
"editorBracketPairGuide.background4": "{{ cyan }}30",
|
||||
"editorBracketPairGuide.background5": "{{ magenta }}30",
|
||||
"editorBracketPairGuide.background6": "{{ orange }}30",
|
||||
"editorOverviewRuler.background": "{{ bg }}",
|
||||
"editorOverviewRuler.background": "{{ background }}",
|
||||
"editorOverviewRuler.border": "{{ muted }}20",
|
||||
"editorOverviewRuler.findMatchForeground": "{{ yellow }}80",
|
||||
"editorOverviewRuler.rangeHighlightForeground": "{{ accent }}60",
|
||||
@@ -311,9 +311,9 @@
|
||||
"problemsErrorIcon.foreground": "{{ red }}",
|
||||
"problemsWarningIcon.foreground": "{{ yellow }}",
|
||||
"problemsInfoIcon.foreground": "{{ blue }}",
|
||||
"editorUnnecessaryCode.opacity": "{{ bg }}80",
|
||||
"editorUnnecessaryCode.opacity": "{{ background }}80",
|
||||
"editorUnnecessaryCode.border": "{{ muted }}",
|
||||
"editorGutter.background": "{{ bg }}",
|
||||
"editorGutter.background": "{{ background }}",
|
||||
"editorGutter.modifiedBackground": "{{ orange }}",
|
||||
"editorGutter.addedBackground": "{{ green }}",
|
||||
"editorGutter.deletedBackground": "{{ red }}",
|
||||
@@ -337,38 +337,38 @@
|
||||
"diffEditorOverview.insertedForeground": "{{ green }}80",
|
||||
"diffEditorOverview.removedForeground": "{{ red }}80",
|
||||
"diffEditor.diagonalFill": "{{ muted }}30",
|
||||
"diffEditor.unchangedRegionBackground": "{{ bg }}",
|
||||
"diffEditor.unchangedRegionBackground": "{{ background }}",
|
||||
"diffEditor.unchangedRegionForeground": "{{ muted }}",
|
||||
"diffEditor.unchangedCodeBackground": "{{ bg }}40",
|
||||
"diffEditor.unchangedCodeBackground": "{{ background }}40",
|
||||
"diffEditor.move.border": "{{ cyan }}80",
|
||||
"diffEditor.moveActive.border": "{{ cyan }}",
|
||||
|
||||
"editorWidget.foreground": "{{ fg }}",
|
||||
"editorWidget.background": "{{ bg }}",
|
||||
"editorWidget.foreground": "{{ foreground }}",
|
||||
"editorWidget.background": "{{ background }}",
|
||||
"editorWidget.border": "{{ muted }}",
|
||||
"editorWidget.resizeBorder": "{{ accent }}",
|
||||
"editorSuggestWidget.background": "{{ bg }}",
|
||||
"editorSuggestWidget.background": "{{ background }}",
|
||||
"editorSuggestWidget.border": "{{ muted }}",
|
||||
"editorSuggestWidget.foreground": "{{ fg }}",
|
||||
"editorSuggestWidget.foreground": "{{ foreground }}",
|
||||
"editorSuggestWidget.focusHighlightForeground": "{{ accent }}",
|
||||
"editorSuggestWidget.highlightForeground": "{{ accent }}",
|
||||
"editorSuggestWidget.selectedBackground": "{{ accent }}30",
|
||||
"editorSuggestWidget.selectedForeground": "{{ fg }}",
|
||||
"editorSuggestWidget.selectedIconForeground": "{{ fg }}",
|
||||
"editorSuggestWidget.selectedForeground": "{{ foreground }}",
|
||||
"editorSuggestWidget.selectedIconForeground": "{{ foreground }}",
|
||||
"editorSuggestWidgetStatus.foreground": "{{ muted }}",
|
||||
"editorHoverWidget.foreground": "{{ fg }}",
|
||||
"editorHoverWidget.background": "{{ bg }}",
|
||||
"editorHoverWidget.foreground": "{{ foreground }}",
|
||||
"editorHoverWidget.background": "{{ background }}",
|
||||
"editorHoverWidget.border": "{{ muted }}",
|
||||
"editorHoverWidget.highlightForeground": "{{ accent }}",
|
||||
"editorHoverWidget.statusBarBackground": "{{ muted }}30",
|
||||
"editorGhostText.foreground": "{{ muted }}",
|
||||
"editorGhostText.background": "{{ muted }}10",
|
||||
"editorGhostText.border": "{{ muted }}00",
|
||||
"editorStickyScroll.background": "{{ bg }}",
|
||||
"editorStickyScroll.background": "{{ background }}",
|
||||
"editorStickyScrollHover.background": "{{ muted }}40",
|
||||
"debugExceptionWidget.background": "{{ red }}20",
|
||||
"debugExceptionWidget.border": "{{ red }}",
|
||||
"editorMarkerNavigation.background": "{{ bg }}",
|
||||
"editorMarkerNavigation.background": "{{ background }}",
|
||||
"editorMarkerNavigationError.background": "{{ red }}20",
|
||||
"editorMarkerNavigationError.headerBackground": "{{ red }}15",
|
||||
"editorMarkerNavigationWarning.background": "{{ yellow }}20",
|
||||
@@ -377,19 +377,19 @@
|
||||
"editorMarkerNavigationInfo.headerBackground": "{{ blue }}15",
|
||||
|
||||
"peekView.border": "{{ accent }}",
|
||||
"peekViewEditor.background": "{{ bg }}",
|
||||
"peekViewEditorGutter.background": "{{ bg }}",
|
||||
"peekViewEditor.background": "{{ background }}",
|
||||
"peekViewEditorGutter.background": "{{ background }}",
|
||||
"peekViewEditor.matchHighlightBackground": "{{ yellow }}30",
|
||||
"peekViewEditor.matchHighlightBorder": "{{ yellow }}",
|
||||
"peekViewResult.background": "{{ bg }}",
|
||||
"peekViewResult.fileForeground": "{{ fg }}",
|
||||
"peekViewResult.background": "{{ background }}",
|
||||
"peekViewResult.fileForeground": "{{ foreground }}",
|
||||
"peekViewResult.lineForeground": "{{ muted }}",
|
||||
"peekViewResult.matchHighlightBackground": "{{ yellow }}30",
|
||||
"peekViewResult.selectionBackground": "{{ accent }}30",
|
||||
"peekViewResult.selectionForeground": "{{ fg }}",
|
||||
"peekViewTitle.background": "{{ bg }}",
|
||||
"peekViewResult.selectionForeground": "{{ foreground }}",
|
||||
"peekViewTitle.background": "{{ background }}",
|
||||
"peekViewTitleDescription.foreground": "{{ muted }}",
|
||||
"peekViewTitleLabel.foreground": "{{ fg }}",
|
||||
"peekViewTitleLabel.foreground": "{{ foreground }}",
|
||||
|
||||
"merge.currentContentBackground": "{{ cyan }}20",
|
||||
"merge.currentHeaderBackground": "{{ cyan }}40",
|
||||
@@ -411,70 +411,70 @@
|
||||
"mergeEditor.changeBase.background": "{{ muted }}20",
|
||||
"mergeEditor.changeBase.word.background": "{{ muted }}40",
|
||||
|
||||
"panel.background": "{{ bg }}",
|
||||
"panel.background": "{{ background }}",
|
||||
"panel.border": "{{ muted }}40",
|
||||
"panel.dropBorder": "{{ accent }}",
|
||||
"panelTitle.activeBorder": "{{ accent }}",
|
||||
"panelTitle.activeForeground": "{{ fg }}",
|
||||
"panelTitle.activeForeground": "{{ foreground }}",
|
||||
"panelTitle.inactiveForeground": "{{ muted }}",
|
||||
"panelInput.border": "{{ muted }}",
|
||||
"panelSection.border": "{{ muted }}40",
|
||||
"panelSection.dropBackground": "{{ accent }}20",
|
||||
"panelSectionHeader.background": "{{ bg }}",
|
||||
"panelSectionHeader.foreground": "{{ fg }}",
|
||||
"panelSectionHeader.background": "{{ background }}",
|
||||
"panelSectionHeader.foreground": "{{ foreground }}",
|
||||
"panelSectionHeader.border": "{{ muted }}40",
|
||||
|
||||
"outputView.background": "{{ bg }}",
|
||||
"outputViewStickyScroll.background": "{{ bg }}",
|
||||
"outputView.background": "{{ background }}",
|
||||
"outputViewStickyScroll.background": "{{ background }}",
|
||||
|
||||
"statusBar.background": "{{ bg }}",
|
||||
"statusBar.foreground": "{{ fg }}",
|
||||
"statusBar.border": "{{ bg }}",
|
||||
"statusBar.background": "{{ background }}",
|
||||
"statusBar.foreground": "{{ foreground }}",
|
||||
"statusBar.border": "{{ background }}",
|
||||
"statusBar.debuggingBackground": "{{ yellow }}",
|
||||
"statusBar.debuggingForeground": "{{ bg }}",
|
||||
"statusBar.debuggingForeground": "{{ background }}",
|
||||
"statusBar.debuggingBorder": "{{ yellow }}",
|
||||
"statusBar.noFolderBackground": "{{ bg }}",
|
||||
"statusBar.noFolderForeground": "{{ fg }}",
|
||||
"statusBar.noFolderBorder": "{{ bg }}",
|
||||
"statusBar.noFolderBackground": "{{ background }}",
|
||||
"statusBar.noFolderForeground": "{{ foreground }}",
|
||||
"statusBar.noFolderBorder": "{{ background }}",
|
||||
"statusBar.focusBorder": "{{ accent }}",
|
||||
"statusBarItem.activeBackground": "{{ muted }}",
|
||||
"statusBarItem.hoverBackground": "{{ muted }}60",
|
||||
"statusBarItem.hoverForeground": "{{ fg }}",
|
||||
"statusBarItem.prominentForeground": "{{ fg }}",
|
||||
"statusBarItem.hoverForeground": "{{ foreground }}",
|
||||
"statusBarItem.prominentForeground": "{{ foreground }}",
|
||||
"statusBarItem.prominentBackground": "{{ accent }}",
|
||||
"statusBarItem.prominentHoverBackground": "{{ accent }}80",
|
||||
"statusBarItem.remoteBackground": "{{ accent }}",
|
||||
"statusBarItem.remoteForeground": "{{ bg }}",
|
||||
"statusBarItem.remoteForeground": "{{ background }}",
|
||||
"statusBarItem.remoteHoverBackground": "{{ accent }}80",
|
||||
"statusBarItem.errorBackground": "{{ red }}",
|
||||
"statusBarItem.errorForeground": "{{ bg }}",
|
||||
"statusBarItem.errorForeground": "{{ background }}",
|
||||
"statusBarItem.errorHoverBackground": "{{ red }}80",
|
||||
"statusBarItem.warningBackground": "{{ yellow }}",
|
||||
"statusBarItem.warningForeground": "{{ bg }}",
|
||||
"statusBarItem.warningForeground": "{{ background }}",
|
||||
"statusBarItem.warningHoverBackground": "{{ yellow }}80",
|
||||
"statusBarItem.compactHoverBackground": "{{ muted }}",
|
||||
"statusBarItem.focusBorder": "{{ accent }}",
|
||||
|
||||
"titleBar.activeBackground": "{{ bg }}",
|
||||
"titleBar.activeForeground": "{{ fg }}",
|
||||
"titleBar.inactiveBackground": "{{ bg }}",
|
||||
"titleBar.activeBackground": "{{ background }}",
|
||||
"titleBar.activeForeground": "{{ foreground }}",
|
||||
"titleBar.inactiveBackground": "{{ background }}",
|
||||
"titleBar.inactiveForeground": "{{ muted }}",
|
||||
"titleBar.border": "{{ bg }}",
|
||||
"titleBar.border": "{{ background }}",
|
||||
|
||||
"menubar.selectionForeground": "{{ fg }}",
|
||||
"menubar.selectionForeground": "{{ foreground }}",
|
||||
"menubar.selectionBackground": "{{ accent }}30",
|
||||
"menubar.selectionBorder": "{{ accent }}00",
|
||||
"menu.foreground": "{{ fg }}",
|
||||
"menu.background": "{{ bg }}",
|
||||
"menu.selectionForeground": "{{ fg }}",
|
||||
"menu.foreground": "{{ foreground }}",
|
||||
"menu.background": "{{ background }}",
|
||||
"menu.selectionForeground": "{{ foreground }}",
|
||||
"menu.selectionBackground": "{{ accent }}30",
|
||||
"menu.selectionBorder": "{{ accent }}00",
|
||||
"menu.separatorBackground": "{{ muted }}",
|
||||
"menu.border": "{{ muted }}",
|
||||
|
||||
"commandCenter.foreground": "{{ fg }}",
|
||||
"commandCenter.activeForeground": "{{ fg }}",
|
||||
"commandCenter.background": "{{ bg }}",
|
||||
"commandCenter.foreground": "{{ foreground }}",
|
||||
"commandCenter.activeForeground": "{{ foreground }}",
|
||||
"commandCenter.background": "{{ background }}",
|
||||
"commandCenter.activeBackground": "{{ muted }}",
|
||||
"commandCenter.border": "{{ muted }}",
|
||||
"commandCenter.inactiveForeground": "{{ muted }}",
|
||||
@@ -483,11 +483,11 @@
|
||||
"commandCenter.debuggingBackground": "{{ yellow }}20",
|
||||
|
||||
"notificationCenter.border": "{{ muted }}",
|
||||
"notificationCenterHeader.foreground": "{{ fg }}",
|
||||
"notificationCenterHeader.background": "{{ bg }}",
|
||||
"notificationCenterHeader.foreground": "{{ foreground }}",
|
||||
"notificationCenterHeader.background": "{{ background }}",
|
||||
"notificationToast.border": "{{ muted }}",
|
||||
"notifications.foreground": "{{ fg }}",
|
||||
"notifications.background": "{{ bg }}",
|
||||
"notifications.foreground": "{{ foreground }}",
|
||||
"notifications.background": "{{ background }}",
|
||||
"notifications.border": "{{ muted }}",
|
||||
"notificationLink.foreground": "{{ accent }}",
|
||||
"notificationsErrorIcon.foreground": "{{ red }}",
|
||||
@@ -495,18 +495,18 @@
|
||||
"notificationsInfoIcon.foreground": "{{ blue }}",
|
||||
|
||||
"banner.background": "{{ accent }}20",
|
||||
"banner.foreground": "{{ fg }}",
|
||||
"banner.foreground": "{{ foreground }}",
|
||||
"banner.iconForeground": "{{ accent }}",
|
||||
|
||||
"extensionButton.prominentBackground": "{{ accent }}",
|
||||
"extensionButton.prominentForeground": "{{ bg }}",
|
||||
"extensionButton.prominentForeground": "{{ background }}",
|
||||
"extensionButton.prominentHoverBackground": "{{ accent }}80",
|
||||
"extensionButton.background": "{{ muted }}",
|
||||
"extensionButton.foreground": "{{ fg }}",
|
||||
"extensionButton.foreground": "{{ foreground }}",
|
||||
"extensionButton.hoverBackground": "{{ muted }}80",
|
||||
"extensionButton.separator": "{{ bg }}",
|
||||
"extensionButton.separator": "{{ background }}",
|
||||
"extensionBadge.remoteBackground": "{{ accent }}",
|
||||
"extensionBadge.remoteForeground": "{{ bg }}",
|
||||
"extensionBadge.remoteForeground": "{{ background }}",
|
||||
"extensionIcon.starForeground": "{{ yellow }}",
|
||||
"extensionIcon.verifiedForeground": "{{ cyan }}",
|
||||
"extensionIcon.preReleaseForeground": "{{ yellow }}",
|
||||
@@ -514,22 +514,22 @@
|
||||
|
||||
"pickerGroup.border": "{{ muted }}",
|
||||
"pickerGroup.foreground": "{{ accent }}",
|
||||
"quickInput.background": "{{ bg }}",
|
||||
"quickInput.foreground": "{{ fg }}",
|
||||
"quickInput.background": "{{ background }}",
|
||||
"quickInput.foreground": "{{ foreground }}",
|
||||
"quickInputList.focusBackground": "{{ accent }}30",
|
||||
"quickInputList.focusForeground": "{{ fg }}",
|
||||
"quickInputList.focusIconForeground": "{{ fg }}",
|
||||
"quickInputTitle.background": "{{ bg }}",
|
||||
"quickInputList.focusForeground": "{{ foreground }}",
|
||||
"quickInputList.focusIconForeground": "{{ foreground }}",
|
||||
"quickInputTitle.background": "{{ background }}",
|
||||
|
||||
"keybindingLabel.background": "{{ muted }}40",
|
||||
"keybindingLabel.foreground": "{{ fg }}",
|
||||
"keybindingLabel.foreground": "{{ foreground }}",
|
||||
"keybindingLabel.border": "{{ muted }}",
|
||||
"keybindingLabel.bottomBorder": "{{ muted }}",
|
||||
"keybindingTable.headerBackground": "{{ bg }}",
|
||||
"keybindingTable.rowsBackground": "{{ bg }}40",
|
||||
"keybindingTable.headerBackground": "{{ background }}",
|
||||
"keybindingTable.rowsBackground": "{{ background }}40",
|
||||
|
||||
"terminal.background": "{{ bg }}",
|
||||
"terminal.foreground": "{{ fg }}",
|
||||
"terminal.background": "{{ background }}",
|
||||
"terminal.foreground": "{{ foreground }}",
|
||||
"terminal.border": "{{ muted }}40",
|
||||
"terminal.selectionBackground": "{{ selection_background }}60",
|
||||
"terminal.selectionForeground": "{{ selection_foreground }}",
|
||||
@@ -539,16 +539,16 @@
|
||||
"terminal.findMatchHighlightBackground": "{{ yellow }}25",
|
||||
"terminal.findMatchHighlightBorder": "{{ yellow }}60",
|
||||
"terminal.hoverHighlightBackground": "{{ accent }}20",
|
||||
"terminalCursor.background": "{{ bg }}",
|
||||
"terminalCursor.foreground": "{{ bright_fg }}",
|
||||
"terminal.ansiBlack": "{{ bg }}",
|
||||
"terminalCursor.background": "{{ background }}",
|
||||
"terminalCursor.foreground": "{{ bright_foreground }}",
|
||||
"terminal.ansiBlack": "{{ background }}",
|
||||
"terminal.ansiRed": "{{ red }}",
|
||||
"terminal.ansiGreen": "{{ green }}",
|
||||
"terminal.ansiYellow": "{{ yellow }}",
|
||||
"terminal.ansiBlue": "{{ blue }}",
|
||||
"terminal.ansiMagenta": "{{ magenta }}",
|
||||
"terminal.ansiCyan": "{{ cyan }}",
|
||||
"terminal.ansiWhite": "{{ fg }}",
|
||||
"terminal.ansiWhite": "{{ foreground }}",
|
||||
"terminal.ansiBrightBlack": "{{ muted }}",
|
||||
"terminal.ansiBrightRed": "{{ bright_red }}",
|
||||
"terminal.ansiBrightGreen": "{{ bright_green }}",
|
||||
@@ -556,25 +556,25 @@
|
||||
"terminal.ansiBrightBlue": "{{ bright_blue }}",
|
||||
"terminal.ansiBrightMagenta": "{{ bright_magenta }}",
|
||||
"terminal.ansiBrightCyan": "{{ bright_cyan }}",
|
||||
"terminal.ansiBrightWhite": "{{ bright_fg }}",
|
||||
"terminal.ansiBrightWhite": "{{ bright_foreground }}",
|
||||
"terminal.tab.activeBorder": "{{ accent }}",
|
||||
"terminalCommandDecoration.defaultBackground": "{{ muted }}",
|
||||
"terminalCommandDecoration.successBackground": "{{ green }}",
|
||||
"terminalCommandDecoration.errorBackground": "{{ red }}",
|
||||
"terminalOverviewRuler.cursorForeground": "{{ bright_fg }}",
|
||||
"terminalOverviewRuler.cursorForeground": "{{ bright_foreground }}",
|
||||
"terminalOverviewRuler.findMatchForeground": "{{ yellow }}",
|
||||
"terminalStickyScroll.background": "{{ bg }}",
|
||||
"terminalStickyScroll.background": "{{ background }}",
|
||||
"terminalStickyScrollHover.background": "{{ muted }}40",
|
||||
|
||||
"debugToolBar.background": "{{ bg }}",
|
||||
"debugToolBar.background": "{{ background }}",
|
||||
"debugToolBar.border": "{{ muted }}",
|
||||
"debugView.stateLabelForeground": "{{ fg }}",
|
||||
"debugView.stateLabelForeground": "{{ foreground }}",
|
||||
"debugView.stateLabelBackground": "{{ accent }}30",
|
||||
"debugView.valueChangedHighlight": "{{ cyan }}40",
|
||||
"debugView.exceptionLabelForeground": "{{ bg }}",
|
||||
"debugView.exceptionLabelForeground": "{{ background }}",
|
||||
"debugView.exceptionLabelBackground": "{{ red }}",
|
||||
"debugTokenExpression.name": "{{ magenta }}",
|
||||
"debugTokenExpression.value": "{{ fg }}",
|
||||
"debugTokenExpression.value": "{{ foreground }}",
|
||||
"debugTokenExpression.string": "{{ green }}",
|
||||
"debugTokenExpression.boolean": "{{ orange }}",
|
||||
"debugTokenExpression.number": "{{ orange }}",
|
||||
@@ -588,20 +588,20 @@
|
||||
"testing.iconUnset": "{{ muted }}",
|
||||
"testing.iconSkipped": "{{ yellow }}",
|
||||
"testing.peekBorder": "{{ accent }}",
|
||||
"testing.peekHeaderBackground": "{{ bg }}",
|
||||
"testing.peekHeaderBackground": "{{ background }}",
|
||||
"testing.message.error.decorationForeground": "{{ red }}",
|
||||
"testing.message.error.lineBackground": "{{ red }}15",
|
||||
"testing.message.info.decorationForeground": "{{ blue }}",
|
||||
"testing.message.info.lineBackground": "{{ blue }}15",
|
||||
|
||||
"welcomePage.background": "{{ bg }}",
|
||||
"welcomePage.tileBackground": "{{ bg }}",
|
||||
"welcomePage.background": "{{ background }}",
|
||||
"welcomePage.tileBackground": "{{ background }}",
|
||||
"welcomePage.tileHoverBackground": "{{ muted }}40",
|
||||
"welcomePage.tileBorder": "{{ muted }}",
|
||||
"welcomePage.progress.background": "{{ muted }}",
|
||||
"welcomePage.progress.foreground": "{{ accent }}",
|
||||
"walkThrough.embeddedEditorBackground": "{{ bg }}",
|
||||
"walkthrough.stepTitle.foreground": "{{ fg }}",
|
||||
"walkThrough.embeddedEditorBackground": "{{ background }}",
|
||||
"walkthrough.stepTitle.foreground": "{{ foreground }}",
|
||||
|
||||
"gitDecoration.addedResourceForeground": "{{ green }}",
|
||||
"gitDecoration.modifiedResourceForeground": "{{ orange }}",
|
||||
@@ -614,21 +614,21 @@
|
||||
"gitDecoration.conflictingResourceForeground": "{{ yellow }}",
|
||||
"gitDecoration.submoduleResourceForeground": "{{ magenta }}",
|
||||
|
||||
"settings.headerForeground": "{{ fg }}",
|
||||
"settings.headerForeground": "{{ foreground }}",
|
||||
"settings.modifiedItemIndicator": "{{ accent }}",
|
||||
"settings.dropdownBackground": "{{ bg }}",
|
||||
"settings.dropdownForeground": "{{ fg }}",
|
||||
"settings.dropdownBackground": "{{ background }}",
|
||||
"settings.dropdownForeground": "{{ foreground }}",
|
||||
"settings.dropdownBorder": "{{ muted }}",
|
||||
"settings.dropdownListBorder": "{{ muted }}",
|
||||
"settings.checkboxBackground": "{{ bg }}",
|
||||
"settings.checkboxForeground": "{{ fg }}",
|
||||
"settings.checkboxBackground": "{{ background }}",
|
||||
"settings.checkboxForeground": "{{ foreground }}",
|
||||
"settings.checkboxBorder": "{{ muted }}",
|
||||
"settings.rowHoverBackground": "{{ bg }}",
|
||||
"settings.textInputBackground": "{{ bg }}",
|
||||
"settings.textInputForeground": "{{ fg }}",
|
||||
"settings.rowHoverBackground": "{{ background }}",
|
||||
"settings.textInputBackground": "{{ background }}",
|
||||
"settings.textInputForeground": "{{ foreground }}",
|
||||
"settings.textInputBorder": "{{ muted }}",
|
||||
"settings.numberInputBackground": "{{ bg }}",
|
||||
"settings.numberInputForeground": "{{ fg }}",
|
||||
"settings.numberInputBackground": "{{ background }}",
|
||||
"settings.numberInputForeground": "{{ foreground }}",
|
||||
"settings.numberInputBorder": "{{ muted }}",
|
||||
"settings.focusedRowBackground": "{{ accent }}10",
|
||||
"settings.focusedRowBorder": "{{ accent }}40",
|
||||
@@ -637,10 +637,10 @@
|
||||
"settings.settingsHeaderHoverForeground": "{{ accent }}",
|
||||
|
||||
"breadcrumb.foreground": "{{ muted }}",
|
||||
"breadcrumb.background": "{{ bg }}",
|
||||
"breadcrumb.focusForeground": "{{ fg }}",
|
||||
"breadcrumb.activeSelectionForeground": "{{ fg }}",
|
||||
"breadcrumbPicker.background": "{{ bg }}",
|
||||
"breadcrumb.background": "{{ background }}",
|
||||
"breadcrumb.focusForeground": "{{ foreground }}",
|
||||
"breadcrumb.activeSelectionForeground": "{{ foreground }}",
|
||||
"breadcrumbPicker.background": "{{ background }}",
|
||||
|
||||
"editor.snippetTabstopHighlightBackground": "{{ accent }}20",
|
||||
"editor.snippetTabstopHighlightBorder": "{{ accent }}40",
|
||||
@@ -656,9 +656,9 @@
|
||||
"symbolIcon.enumeratorForeground": "{{ yellow }}",
|
||||
"symbolIcon.enumeratorMemberForeground": "{{ orange }}",
|
||||
"symbolIcon.eventForeground": "{{ yellow }}",
|
||||
"symbolIcon.fieldForeground": "{{ fg }}",
|
||||
"symbolIcon.fileForeground": "{{ fg }}",
|
||||
"symbolIcon.folderForeground": "{{ fg }}",
|
||||
"symbolIcon.fieldForeground": "{{ foreground }}",
|
||||
"symbolIcon.fileForeground": "{{ foreground }}",
|
||||
"symbolIcon.folderForeground": "{{ foreground }}",
|
||||
"symbolIcon.functionForeground": "{{ blue }}",
|
||||
"symbolIcon.interfaceForeground": "{{ yellow }}",
|
||||
"symbolIcon.keyForeground": "{{ bright_magenta }}",
|
||||
@@ -671,12 +671,12 @@
|
||||
"symbolIcon.objectForeground": "{{ yellow }}",
|
||||
"symbolIcon.operatorForeground": "{{ bright_blue }}",
|
||||
"symbolIcon.packageForeground": "{{ yellow }}",
|
||||
"symbolIcon.propertyForeground": "{{ fg }}",
|
||||
"symbolIcon.propertyForeground": "{{ foreground }}",
|
||||
"symbolIcon.referenceForeground": "{{ bright_magenta }}",
|
||||
"symbolIcon.snippetForeground": "{{ green }}",
|
||||
"symbolIcon.stringForeground": "{{ green }}",
|
||||
"symbolIcon.structForeground": "{{ yellow }}",
|
||||
"symbolIcon.textForeground": "{{ fg }}",
|
||||
"symbolIcon.textForeground": "{{ foreground }}",
|
||||
"symbolIcon.typeParameterForeground": "{{ yellow }}",
|
||||
"symbolIcon.unitForeground": "{{ orange }}",
|
||||
"symbolIcon.variableForeground": "{{ bright_magenta }}",
|
||||
@@ -699,22 +699,22 @@
|
||||
"debugConsole.infoForeground": "{{ blue }}",
|
||||
"debugConsole.warningForeground": "{{ yellow }}",
|
||||
"debugConsole.errorForeground": "{{ red }}",
|
||||
"debugConsole.sourceForeground": "{{ fg }}",
|
||||
"debugConsole.sourceForeground": "{{ foreground }}",
|
||||
"debugConsoleInputIcon.foreground": "{{ accent }}",
|
||||
|
||||
"notebook.editorBackground": "{{ bg }}",
|
||||
"notebook.editorBackground": "{{ background }}",
|
||||
"notebook.cellBorderColor": "{{ muted }}40",
|
||||
"notebook.cellHoverBackground": "{{ bg }}40",
|
||||
"notebook.cellHoverBackground": "{{ background }}40",
|
||||
"notebook.cellInsertionIndicator": "{{ accent }}",
|
||||
"notebook.cellStatusBarItemHoverBackground": "{{ muted }}",
|
||||
"notebook.cellToolbarSeparator": "{{ muted }}",
|
||||
"notebook.cellEditorBackground": "{{ bg }}",
|
||||
"notebook.focusedCellBackground": "{{ bg }}60",
|
||||
"notebook.cellEditorBackground": "{{ background }}",
|
||||
"notebook.focusedCellBackground": "{{ background }}60",
|
||||
"notebook.focusedCellBorder": "{{ accent }}",
|
||||
"notebook.focusedEditorBorder": "{{ accent }}",
|
||||
"notebook.inactiveFocusedCellBorder": "{{ muted }}",
|
||||
"notebook.inactiveSelectedCellBorder": "{{ muted }}",
|
||||
"notebook.outputContainerBackgroundColor": "{{ bg }}",
|
||||
"notebook.outputContainerBackgroundColor": "{{ background }}",
|
||||
"notebook.outputContainerBorderColor": "{{ muted }}40",
|
||||
"notebook.selectedCellBackground": "{{ accent }}15",
|
||||
"notebook.selectedCellBorder": "{{ accent }}40",
|
||||
@@ -724,7 +724,7 @@
|
||||
"notebookStatusSuccessIcon.foreground": "{{ green }}",
|
||||
"notebookEditorOverviewRuler.runningCellForeground": "{{ accent }}",
|
||||
|
||||
"charts.foreground": "{{ fg }}",
|
||||
"charts.foreground": "{{ foreground }}",
|
||||
"charts.lines": "{{ muted }}",
|
||||
"charts.red": "{{ red }}",
|
||||
"charts.blue": "{{ blue }}",
|
||||
@@ -740,17 +740,17 @@
|
||||
|
||||
"editorWatermark.foreground": "{{ muted }}",
|
||||
|
||||
"inlineChat.background": "{{ bg }}",
|
||||
"inlineChat.background": "{{ background }}",
|
||||
"inlineChat.border": "{{ muted }}",
|
||||
"inlineChat.shadow": "{{ bg }}80",
|
||||
"inlineChat.shadow": "{{ background }}80",
|
||||
"inlineChatInput.border": "{{ muted }}",
|
||||
"inlineChatInput.focusBorder": "{{ accent }}",
|
||||
"inlineChatInput.placeholderForeground": "{{ muted }}",
|
||||
"inlineChatInput.background": "{{ bg }}",
|
||||
"inlineChatInput.background": "{{ background }}",
|
||||
"inlineChatDiff.inserted": "{{ green }}20",
|
||||
"inlineChatDiff.removed": "{{ red }}20",
|
||||
|
||||
"chat.requestBackground": "{{ bg }}",
|
||||
"chat.requestBackground": "{{ background }}",
|
||||
"chat.requestBorder": "{{ muted }}"
|
||||
},
|
||||
"tokenColors": [
|
||||
@@ -766,7 +766,7 @@
|
||||
"name": "Variable",
|
||||
"scope": ["variable", "string constant.other.placeholder"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}"
|
||||
"foreground": "{{ foreground }}"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -867,7 +867,7 @@
|
||||
"name": "Type Builtin",
|
||||
"scope": ["storage.type.primitive", "support.type"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}"
|
||||
"foreground": "{{ foreground }}"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -939,7 +939,7 @@
|
||||
"name": "Punctuation",
|
||||
"scope": ["punctuation", "meta.brace", "meta.bracket"],
|
||||
"settings": {
|
||||
"foreground": "{{ dark_fg }}"
|
||||
"foreground": "{{ dark_foreground }}"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -1016,7 +1016,7 @@
|
||||
"name": "Tag Attribute",
|
||||
"scope": ["entity.other.attribute-name"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}"
|
||||
"foreground": "{{ foreground }}"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -1030,7 +1030,7 @@
|
||||
"name": "CSS Value",
|
||||
"scope": ["support.constant.property-value.css", "meta.property-value.css"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}"
|
||||
"foreground": "{{ foreground }}"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -1109,7 +1109,7 @@
|
||||
"name": "Markdown Bold",
|
||||
"scope": ["markup.bold", "punctuation.definition.bold.markdown"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}",
|
||||
"foreground": "{{ foreground }}",
|
||||
"fontStyle": "bold"
|
||||
}
|
||||
},
|
||||
@@ -1117,7 +1117,7 @@
|
||||
"name": "Markdown Italic",
|
||||
"scope": ["markup.italic", "punctuation.definition.italic.markdown"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}",
|
||||
"foreground": "{{ foreground }}",
|
||||
"fontStyle": "italic"
|
||||
}
|
||||
},
|
||||
@@ -1175,7 +1175,7 @@
|
||||
"name": "This/Self",
|
||||
"scope": ["variable.language.this", "variable.language.self", "variable.language.special.self"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}",
|
||||
"foreground": "{{ foreground }}",
|
||||
"fontStyle": "italic"
|
||||
}
|
||||
},
|
||||
@@ -1183,7 +1183,7 @@
|
||||
"name": "Object Keys",
|
||||
"scope": ["meta.object-literal.key", "string.unquoted.label.js"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}"
|
||||
"foreground": "{{ foreground }}"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -1205,7 +1205,7 @@
|
||||
"name": "Shell Variable",
|
||||
"scope": ["variable.other.normal.shell", "variable.other.positional.shell", "variable.other.bracket.shell"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}"
|
||||
"foreground": "{{ foreground }}"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -1268,7 +1268,7 @@
|
||||
"name": "Make Variable",
|
||||
"scope": ["variable.other.makefile"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}"
|
||||
"foreground": "{{ foreground }}"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -1282,7 +1282,7 @@
|
||||
"name": "Python Self",
|
||||
"scope": ["variable.parameter.function.language.special.self.python"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}",
|
||||
"foreground": "{{ foreground }}",
|
||||
"fontStyle": "italic"
|
||||
}
|
||||
},
|
||||
@@ -1298,7 +1298,7 @@
|
||||
"name": "PHP Variable",
|
||||
"scope": ["variable.other.php", "punctuation.definition.variable.php"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}"
|
||||
"foreground": "{{ foreground }}"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -1333,7 +1333,7 @@
|
||||
"name": "GraphQL Field",
|
||||
"scope": ["variable.graphql", "variable.other.graphql"],
|
||||
"settings": {
|
||||
"foreground": "{{ fg }}"
|
||||
"foreground": "{{ foreground }}"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user