Update dotfiles/.vscode/extensions/theme-betelgeuse-vscode/icon.svg, dotfiles/.vscode/extensions/theme-betelgeuse-vscode/package.json, dotfiles/.vscode/extensions/theme-betelgeuse-vscode/README.md, dotfiles/.vscode/extensions/theme-betelgeuse-vscode/themes/themer-dark-color-theme.json, dotfiles/.vscode/extensions/theme-betelgeuse-vscode/themes/themer-light-color-theme.json
This commit is contained in:
parent
9d9069dced
commit
8bb9ee8135
5 changed files with 1305 additions and 0 deletions
1
dotfiles/.vscode/extensions/theme-betelgeuse-vscode/README.md
vendored
Normal file
1
dotfiles/.vscode/extensions/theme-betelgeuse-vscode/README.md
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
The Betelgeuse VS Code theme created using [themer.dev](https://themer.dev).
|
48
dotfiles/.vscode/extensions/theme-betelgeuse-vscode/icon.svg
vendored
Normal file
48
dotfiles/.vscode/extensions/theme-betelgeuse-vscode/icon.svg
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
|
||||
<svg width="400px" height="400px" viewBox="0 0 400 400" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient x1="0%" y1="50%" x2="100%" y2="50%" id="shadeGradientLight">
|
||||
<stop stop-color="#e5e6e7" offset="0%"></stop>
|
||||
<stop stop-color="#cccdcf" offset="16.67%"></stop>
|
||||
<stop stop-color="#b2b4b7" offset="33.33%"></stop>
|
||||
<stop stop-color="#999ba0" offset="50%"></stop>
|
||||
<stop stop-color="#7f8288" offset="66.67%"></stop>
|
||||
<stop stop-color="#666970" offset="83.33%"></stop>
|
||||
<stop stop-color="#4c5058" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="0%" y1="50%" x2="100%" y2="50%" id="shadeGradientDark">
|
||||
<stop stop-color="#2f323e" offset="0%"></stop>
|
||||
<stop stop-color="#474b56" offset="16.67%"></stop>
|
||||
<stop stop-color="#60646f" offset="33.33%"></stop>
|
||||
<stop stop-color="#797c87" offset="50%"></stop>
|
||||
<stop stop-color="#9295a0" offset="66.67%"></stop>
|
||||
<stop stop-color="#aaaeb8" offset="83.33%"></stop>
|
||||
<stop stop-color="#c3c7d1" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="light">
|
||||
<rect fill="#ffffff" x="0" y="0" width="400" height="200"></rect>
|
||||
<rect fill="#ff4972" x="28" y="28" width="74" height="37"></rect>
|
||||
<rect fill="#dcdfe4" x="118" y="28" width="74" height="37"></rect>
|
||||
<rect fill="#ffff80" x="208" y="28" width="74" height="37"></rect>
|
||||
<rect fill="#95ffc3" x="298" y="28" width="74" height="37"></rect>
|
||||
<rect fill="#24e5ff" x="28" y="81" width="74" height="37"></rect>
|
||||
<rect fill="#a0dbff" x="118" y="81" width="74" height="37"></rect>
|
||||
<rect fill="#4c5058" x="208" y="81" width="74" height="37"></rect>
|
||||
<rect fill="#eb71ad" x="298" y="81" width="74" height="37"></rect>
|
||||
<rect fill="url(#shadeGradientLight)" x="28" y="134" width="344" height="37"></rect>
|
||||
</g>
|
||||
<g id="dark" transform="translate(0.000000, 200.000000)">
|
||||
<rect fill="#161925" x="0" y="0" width="400" height="200"></rect>
|
||||
<rect fill="#ed254e" x="28" y="28" width="74" height="37"></rect>
|
||||
<rect fill="#dcdfe4" x="118" y="28" width="74" height="37"></rect>
|
||||
<rect fill="#f9dc5c" x="208" y="28" width="74" height="37"></rect>
|
||||
<rect fill="#71f79f" x="298" y="28" width="74" height="37"></rect>
|
||||
<rect fill="#00c1e4" x="28" y="81" width="74" height="37"></rect>
|
||||
<rect fill="#7cb7ff" x="118" y="81" width="74" height="37"></rect>
|
||||
<rect fill="#c3c7d1" x="208" y="81" width="74" height="37"></rect>
|
||||
<rect fill="#c74d89" x="298" y="81" width="74" height="37"></rect>
|
||||
<rect fill="url(#shadeGradientDark)" x="28" y="134" width="344" height="37"></rect>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3 KiB |
28
dotfiles/.vscode/extensions/theme-betelgeuse-vscode/package.json
vendored
Normal file
28
dotfiles/.vscode/extensions/theme-betelgeuse-vscode/package.json
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"name": "betelgeuse-vscode",
|
||||
"displayName": "Betelgeuse VS Code Theme",
|
||||
"description": "Betelgeuse theme generated by Themer.dev",
|
||||
"version": "2.4.0",
|
||||
"publisher": "Megabyte Labs",
|
||||
"engines": {
|
||||
"vscode": "^1.14.0"
|
||||
},
|
||||
"categories": [
|
||||
"Themes"
|
||||
],
|
||||
"icon": "icon.svg",
|
||||
"contributes": {
|
||||
"themes": [
|
||||
{
|
||||
"label": "Betelgeuse Dark",
|
||||
"uiTheme": "vs-dark",
|
||||
"path": "themes/themer-dark-color-theme.json"
|
||||
},
|
||||
{
|
||||
"label": "Betelgeuse Light",
|
||||
"uiTheme": "vs",
|
||||
"path": "themes/themer-light-color-theme.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
614
dotfiles/.vscode/extensions/theme-betelgeuse-vscode/themes/themer-dark-color-theme.json
vendored
Normal file
614
dotfiles/.vscode/extensions/theme-betelgeuse-vscode/themes/themer-dark-color-theme.json
vendored
Normal file
|
@ -0,0 +1,614 @@
|
|||
{
|
||||
"name": "Betelgeuse Dark",
|
||||
"type": "dark",
|
||||
"colors": {
|
||||
"focusBorder": "#c3c7d1",
|
||||
"foreground": "#c3c7d1",
|
||||
"widget.shadow": "#161925",
|
||||
"selection.background": "#474b56",
|
||||
"descriptionForeground": "#aaaeb8",
|
||||
"errorForeground": "#ed254e",
|
||||
"icon.foreground": "#aaaeb8",
|
||||
"sash.hoverBorder": "#7cb7ff",
|
||||
"textBlockQuote.background": "#2f323e",
|
||||
"textBlockQuote.border": "#2f323e",
|
||||
"textCodeBlock.background": "#161925",
|
||||
"textLink.activeForeground": "#00c1e4",
|
||||
"textLink.foreground": "#7cb7ff",
|
||||
"textPreformat.foreground": "#dcdfe4",
|
||||
"textSeparator.foreground": "#797c87",
|
||||
"button.background": "#7cb7ff",
|
||||
"button.foreground": "#161925",
|
||||
"button.hoverBackground": "#00c1e4",
|
||||
"button.secondaryForeground": "#161925",
|
||||
"button.secondaryBackground": "#aaaeb8",
|
||||
"button.secondaryHoverBackground": "#9295a0",
|
||||
"checkbox.background": "#7cb7ff",
|
||||
"checkbox.foreground": "#161925",
|
||||
"checkbox.border": "#2f323e",
|
||||
"dropdown.background": "#2f323e",
|
||||
"dropdown.listBackground": "#2f323e",
|
||||
"dropdown.border": "#2f323e",
|
||||
"dropdown.foreground": "#aaaeb8",
|
||||
"input.background": "#2f323e",
|
||||
"input.border": "#2f323e",
|
||||
"input.foreground": "#aaaeb8",
|
||||
"input.placeholderForeground": "#474b56",
|
||||
"inputOption.activeBackground": "#474b56",
|
||||
"inputOption.activeBorder": "#00c1e4",
|
||||
"inputOption.activeForeground": "#c3c7d1",
|
||||
"inputValidation.errorBackground": "#2f323e",
|
||||
"inputValidation.errorForeground": "#ed254e",
|
||||
"inputValidation.errorBorder": "#ed254e",
|
||||
"inputValidation.infoBackground": "#2f323e",
|
||||
"inputValidation.infoForeground": "#7cb7ff",
|
||||
"inputValidation.infoBorder": "#7cb7ff",
|
||||
"inputValidation.warningBackground": "#2f323e",
|
||||
"inputValidation.warningForeground": "#dcdfe4",
|
||||
"inputValidation.warningBorder": "#dcdfe4",
|
||||
"scrollbar.shadow": "#161925",
|
||||
"scrollbarSlider.activeBackground": "#9295a07f",
|
||||
"scrollbarSlider.background": "#60646f7f",
|
||||
"scrollbarSlider.hoverBackground": "#797c877f",
|
||||
"badge.foreground": "#161925",
|
||||
"badge.background": "#c3c7d1",
|
||||
"progressBar.background": "#71f79f",
|
||||
"list.activeSelectionBackground": "#c3c7d133",
|
||||
"list.activeSelectionForeground": "#c3c7d1",
|
||||
"list.dropBackground": "#2f323e",
|
||||
"list.focusBackground": "#60646f3f",
|
||||
"list.focusForeground": "#c3c7d1",
|
||||
"list.highlightForeground": "#f9dc5c",
|
||||
"list.hoverBackground": "#2f323e33",
|
||||
"list.hoverForeground": "#c3c7d1",
|
||||
"list.inactiveSelectionBackground": "#474b563f",
|
||||
"list.inactiveSelectionForeground": "#aaaeb8",
|
||||
"list.inactiveFocusBackground": "#2f323e3f",
|
||||
"list.invalidItemForeground": "#ed254e",
|
||||
"list.errorForeground": "#ed254e",
|
||||
"list.warningForeground": "#f9dc5c",
|
||||
"listFilterWidget.background": "#2f323e",
|
||||
"listFilterWidget.outline": "#7cb7ff",
|
||||
"listFilterWidget.noMatchesOutline": "#ed254e",
|
||||
"list.filterMatchBackground": "#f9dc5c33",
|
||||
"list.filterMatchBorder": "#f9dc5c33",
|
||||
"tree.indentGuidesStroke": "#2f323e",
|
||||
"list.deemphasizedForeground": "#797c87",
|
||||
"activityBar.background": "#161925",
|
||||
"activityBar.dropBorder": "#7cb7ff",
|
||||
"activityBar.foreground": "#9295a0",
|
||||
"activityBar.inactiveForeground": "#797c87",
|
||||
"activityBar.border": "#161925",
|
||||
"activityBarBadge.background": "#c3c7d1",
|
||||
"activityBarBadge.foreground": "#161925",
|
||||
"activityBar.activeBorder": "#aaaeb8",
|
||||
"activityBar.activeBackground": "#2f323e33",
|
||||
"activityBar.activeFocusBorder": "#c3c7d1",
|
||||
"sideBar.background": "#161925",
|
||||
"sideBar.foreground": "#aaaeb8",
|
||||
"sideBar.border": "#2f323e",
|
||||
"sideBar.dropBackground": "#2f323e3f",
|
||||
"sideBarTitle.foreground": "#9295a0",
|
||||
"sideBarSectionHeader.background": "#474b56",
|
||||
"sideBarSectionHeader.foreground": "#aaaeb8",
|
||||
"sideBarSectionHeader.border": "#161925",
|
||||
"minimap.findMatchHighlight": "#f9dc5c",
|
||||
"minimap.selectionHighlight": "#7cb7ff80",
|
||||
"minimap.errorHighlight": "#ed254e80",
|
||||
"minimap.warningHighlight": "#dcdfe480",
|
||||
"minimap.background": "#161925",
|
||||
"minimapSlider.background": "#2f323e33",
|
||||
"minimapSlider.hoverBackground": "#474b5633",
|
||||
"minimapSlider.activeBackground": "#60646f33",
|
||||
"minimapGutter.addedBackground": "#71f79f80",
|
||||
"minimapGutter.modifiedBackground": "#f9dc5c80",
|
||||
"minimapGutter.deletedBackground": "#ed254e80",
|
||||
"editorGroup.border": "#2f323e",
|
||||
"editorGroup.dropBackground": "#474b567f",
|
||||
"editorGroupHeader.noTabsBackground": "#161925",
|
||||
"editorGroupHeader.tabsBackground": "#161925",
|
||||
"editorGroupHeader.tabsBorder": "#161925",
|
||||
"editorGroupHeader.border": "#161925",
|
||||
"editorGroup.emptyBackground": "#161925",
|
||||
"editorGroup.focusedEmptyBorder": "#2f323e",
|
||||
"tab.activeBackground": "#161925",
|
||||
"tab.unfocusedActiveBackground": "#161925",
|
||||
"tab.activeForeground": "#aaaeb8",
|
||||
"tab.border": "#161925",
|
||||
"tab.lastPinnedBorder": "#c74d89",
|
||||
"tab.inactiveBackground": "#2f323e",
|
||||
"tab.unfocusedInactiveBackground": "#2f323e",
|
||||
"tab.inactiveForeground": "#60646f",
|
||||
"tab.unfocusedActiveForeground": "#60646f",
|
||||
"tab.unfocusedInactiveForeground": "#474b56",
|
||||
"tab.hoverBackground": "#2f323e80",
|
||||
"tab.unfocusedHoverBackground": "#2f323e80",
|
||||
"tab.hoverForeground": "#9295a0",
|
||||
"tab.unfocusedHoverForeground": "#797c87",
|
||||
"tab.activeModifiedBorder": "#f9dc5c",
|
||||
"tab.inactiveModifiedBorder": "#f9dc5c",
|
||||
"tab.unfocusedActiveModifiedBorder": "#f9dc5c",
|
||||
"tab.unfocusedInactiveModifiedBorder": "#f9dc5c",
|
||||
"editorPane.background": "#161925",
|
||||
"editor.background": "#161925",
|
||||
"editor.foreground": "#c3c7d1",
|
||||
"editorLineNumber.foreground": "#474b56",
|
||||
"editorLineNumber.activeForeground": "#797c87",
|
||||
"editorCursor.background": "#161925",
|
||||
"editorCursor.foreground": "#c3c7d1",
|
||||
"editor.selectionBackground": "#7cb7ff33",
|
||||
"editor.selectionForeground": "#c3c7d1",
|
||||
"editor.inactiveSelectionBackground": "#7cb7ff33",
|
||||
"editor.selectionHighlightBackground": "#2f323e",
|
||||
"editor.wordHighlightBackground": "#c3c7d133",
|
||||
"editor.wordHighlightStrongBackground": "#c74d8933",
|
||||
"editor.findMatchBackground": "#f9dc5c3f",
|
||||
"editor.findMatchHighlightBackground": "#f9dc5c33",
|
||||
"editor.findRangeHighlightBackground": "#2f323e",
|
||||
"editor.hoverHighlightBackground": "#474b567f",
|
||||
"editor.lineHighlightBackground": "#161925",
|
||||
"editor.lineHighlightBorder": "#2f323e",
|
||||
"editorLink.activeForeground": "#00c1e4",
|
||||
"editor.rangeHighlightBackground": "#f9dc5c33",
|
||||
"editor.symbolHighlightBackground": "#c3c7d133",
|
||||
"editorWhitespace.foreground": "#2f323e",
|
||||
"editorIndentGuide.background": "#2f323e",
|
||||
"editorIndentGuide.activeBackground": "#474b56",
|
||||
"editorRuler.foreground": "#2f323e",
|
||||
"editorCodeLens.foreground": "#9295a0",
|
||||
"editorLightBulb.foreground": "#f9dc5c",
|
||||
"editorLightBulbAutoFix.foreground": "#7cb7ff",
|
||||
"editorBracketMatch.background": "#2f323e",
|
||||
"editorBracketMatch.border": "#474b56",
|
||||
"editorBracketHighlight.foreground1": "#c3c7d1",
|
||||
"editorBracketHighlight.foreground2": "#f9dc5c",
|
||||
"editorBracketHighlight.foreground3": "#00c1e4",
|
||||
"editorBracketHighlight.foreground4": "#c3c7d1",
|
||||
"editorBracketHighlight.foreground5": "#71f79f",
|
||||
"editorBracketHighlight.foreground6": "#7cb7ff",
|
||||
"editorBracketHighlight.unexpectedBracket": "#ed254e",
|
||||
"editor.foldBackground": "#2f323e66",
|
||||
"editorOverviewRuler.border": "#2f323e",
|
||||
"editorOverviewRuler.findMatchForeground": "#f9dc5cbf",
|
||||
"editorOverviewRuler.rangeHighlightForeground": "#474b56bf",
|
||||
"editorOverviewRuler.selectionHighlightForeground": "#2f323ebf",
|
||||
"editorOverviewRuler.wordHighlightForeground": "#474b56bf",
|
||||
"editorOverviewRuler.wordHighlightStrongForeground": "#60646fbf",
|
||||
"editorOverviewRuler.modifiedForeground": "#f9dc5c7f",
|
||||
"editorOverviewRuler.addedForeground": "#71f79f7f",
|
||||
"editorOverviewRuler.deletedForeground": "#ed254e7f",
|
||||
"editorOverviewRuler.errorForeground": "#ed254e7f",
|
||||
"editorOverviewRuler.warningForeground": "#dcdfe47f",
|
||||
"editorOverviewRuler.infoForeground": "#7cb7ff7f",
|
||||
"editorOverviewRuler.bracketMatchForeground": "#60646f",
|
||||
"editorError.foreground": "#ed254e",
|
||||
"editorError.border": "#c3c7d1",
|
||||
"editorWarning.foreground": "#dcdfe4",
|
||||
"editorWarning.border": "#aaaeb8",
|
||||
"editorInfo.foreground": "#7cb7ff",
|
||||
"editorInfo.border": "#9295a0",
|
||||
"editorHint.foreground": "#c74d89",
|
||||
"editorHint.border": "#797c87",
|
||||
"problemsErrorIcon.foreground": "#ed254e",
|
||||
"problemsWarningIcon.foreground": "#dcdfe4",
|
||||
"problemsInfoIcon.foreground": "#7cb7ff",
|
||||
"editorUnnecessaryCode.opacity": "#0000007f",
|
||||
"editorGutter.background": "#161925",
|
||||
"editorGutter.modifiedBackground": "#f9dc5c",
|
||||
"editorGutter.addedBackground": "#71f79f",
|
||||
"editorGutter.deletedBackground": "#ed254e",
|
||||
"editorGutter.commentRangeForeground": "#60646f",
|
||||
"editorGutter.foldingControlForeground": "#9295a0",
|
||||
"diffEditor.insertedTextBackground": "#71f79f20",
|
||||
"diffEditor.removedTextBackground": "#ed254e20",
|
||||
"diffEditor.border": "#2f323e",
|
||||
"diffEditor.diagonalFill": "#2f323e7f",
|
||||
"editorWidget.foreground": "#aaaeb8",
|
||||
"editorWidget.background": "#2f323e",
|
||||
"editorWidget.border": "#2f323e",
|
||||
"editorWidget.resizeBorder": "#7cb7ff",
|
||||
"editorSuggestWidget.background": "#2f323e",
|
||||
"editorSuggestWidget.border": "#2f323e",
|
||||
"editorSuggestWidget.foreground": "#aaaeb8",
|
||||
"editorSuggestWidget.highlightForeground": "#c74d89",
|
||||
"editorSuggestWidget.selectedBackground": "#474b56",
|
||||
"editorHoverWidget.foreground": "#aaaeb8",
|
||||
"editorHoverWidget.background": "#2f323e",
|
||||
"editorHoverWidget.border": "#2f323e",
|
||||
"editorHoverWidget.statusBarBackground": "#7cb7ff33",
|
||||
"debugExceptionWidget.background": "#2f323e",
|
||||
"debugExceptionWidget.border": "#2f323e",
|
||||
"editorMarkerNavigation.background": "#2f323e",
|
||||
"editorMarkerNavigationError.background": "#ed254e",
|
||||
"editorMarkerNavigationWarning.background": "#dcdfe4",
|
||||
"editorMarkerNavigationInfo.background": "#7cb7ff",
|
||||
"peekView.border": "#c74d89",
|
||||
"peekViewEditor.background": "#2f323e7f",
|
||||
"peekViewEditorGutter.background": "#2f323e7f",
|
||||
"peekViewEditor.matchHighlightBackground": "#f9dc5c7f",
|
||||
"peekViewResult.background": "#2f323e",
|
||||
"peekViewResult.fileForeground": "#aaaeb8",
|
||||
"peekViewResult.lineForeground": "#474b56",
|
||||
"peekViewResult.matchHighlightBackground": "#f9dc5c",
|
||||
"peekViewResult.selectionBackground": "#60646f",
|
||||
"peekViewResult.selectionForeground": "#c3c7d1",
|
||||
"peekViewTitle.background": "#2f323e",
|
||||
"peekViewTitleDescription.foreground": "#9295a0",
|
||||
"peekViewTitleLabel.foreground": "#c3c7d1",
|
||||
"merge.currentHeaderBackground": "#00c1e44c",
|
||||
"merge.currentContentBackground": "#00c1e44c",
|
||||
"merge.incomingHeaderBackground": "#7cb7ff4c",
|
||||
"merge.incomingContentBackground": "#7cb7ff4c",
|
||||
"merge.border": "#797c87",
|
||||
"merge.commonContentBackground": "#c3c7d14c",
|
||||
"merge.commonHeaderBackground": "#c3c7d14c",
|
||||
"editorOverviewRuler.currentContentForeground": "#00c1e4",
|
||||
"editorOverviewRuler.incomingContentForeground": "#7cb7ff",
|
||||
"editorOverviewRuler.commonContentForeground": "#c3c7d1",
|
||||
"panel.background": "#161925",
|
||||
"panel.border": "#2f323e",
|
||||
"panel.dropBorder": "#7cb7ff",
|
||||
"panelTitle.activeBorder": "#60646f",
|
||||
"panelTitle.activeForeground": "#aaaeb8",
|
||||
"panelTitle.inactiveForeground": "#797c87",
|
||||
"panelSection.border": "#2f323e",
|
||||
"panelSection.dropBackground": "#2f323e3f",
|
||||
"panelSectionHeader.background": "#474b56",
|
||||
"panelSectionHeader.foreground": "#aaaeb8",
|
||||
"panelSectionHeader.border": "#161925",
|
||||
"imagePreview.border": "#2f323e",
|
||||
"statusBar.background": "#7cb7ff",
|
||||
"statusBar.foreground": "#161925",
|
||||
"statusBar.border": "#161925",
|
||||
"statusBar.debuggingBackground": "#dcdfe4",
|
||||
"statusBar.debuggingForeground": "#161925",
|
||||
"statusBar.debuggingBorder": "#161925",
|
||||
"statusBar.noFolderBackground": "#c3c7d1",
|
||||
"statusBar.noFolderForeground": "#161925",
|
||||
"statusBar.noFolderBorder": "#161925",
|
||||
"statusBarItem.activeBackground": "#00c1e4",
|
||||
"statusBarItem.hoverBackground": "#71f79f",
|
||||
"statusBarItem.prominentBackground": "#00c1e4",
|
||||
"statusBarItem.prominentHoverBackground": "#71f79f",
|
||||
"statusBarItem.remoteBackground": "#00c1e4",
|
||||
"statusBarItem.remoteForeground": "#161925",
|
||||
"statusBarItem.errorBackground": "#ed254e",
|
||||
"statusBarItem.errorForeground": "#161925",
|
||||
"titleBar.activeBackground": "#161925",
|
||||
"titleBar.activeForeground": "#9295a0",
|
||||
"titleBar.inactiveBackground": "#161925",
|
||||
"titleBar.inactiveForeground": "#60646f",
|
||||
"menubar.selectionForeground": "#c3c7d1",
|
||||
"menubar.selectionBackground": "#2f323e",
|
||||
"menu.foreground": "#aaaeb8",
|
||||
"menu.background": "#161925",
|
||||
"menu.selectionForeground": "#c3c7d1",
|
||||
"menu.selectionBackground": "#2f323e",
|
||||
"menu.separatorBackground": "#474b56",
|
||||
"notificationCenterHeader.foreground": "#aaaeb8",
|
||||
"notificationCenterHeader.background": "#474b56",
|
||||
"notificationToast.border": "#60646f",
|
||||
"notifications.foreground": "#c3c7d1",
|
||||
"notifications.background": "#2f323e",
|
||||
"notifications.border": "#60646f",
|
||||
"notificationLink.foreground": "#7cb7ff",
|
||||
"notificationsErrorIcon.foreground": "#ed254e",
|
||||
"notificationsWarningIcon.foreground": "#dcdfe4",
|
||||
"notificationsInfoIcon.foreground": "#7cb7ff",
|
||||
"extensionButton.prominentForeground": "#161925",
|
||||
"extensionButton.prominentBackground": "#7cb7ff",
|
||||
"extensionButton.prominentHoverBackground": "#00c1e4",
|
||||
"extensionBadge.remoteBackground": "#c74d89",
|
||||
"extensionBadge.remoteForeground": "#161925",
|
||||
"pickerGroup.border": "#474b56",
|
||||
"pickerGroup.foreground": "#797c87",
|
||||
"quickInput.background": "#2f323e",
|
||||
"quickInput.foreground": "#c3c7d1",
|
||||
"quickInputTitle.background": "#474b56",
|
||||
"terminal.background": "#161925",
|
||||
"terminal.foreground": "#aaaeb8",
|
||||
"terminal.ansiBlack": "#161925",
|
||||
"terminal.ansiBlue": "#7cb7ff",
|
||||
"terminal.ansiBrightBlack": "#2f323e",
|
||||
"terminal.ansiBrightBlue": "#7cb7ff",
|
||||
"terminal.ansiBrightCyan": "#00c1e4",
|
||||
"terminal.ansiBrightGreen": "#00c1e4",
|
||||
"terminal.ansiBrightMagenta": "#c74d89",
|
||||
"terminal.ansiBrightRed": "#dcdfe4",
|
||||
"terminal.ansiBrightWhite": "#c3c7d1",
|
||||
"terminal.ansiBrightYellow": "#f9dc5c",
|
||||
"terminal.ansiCyan": "#00c1e4",
|
||||
"terminal.ansiGreen": "#71f79f",
|
||||
"terminal.ansiMagenta": "#c74d89",
|
||||
"terminal.ansiRed": "#ed254e",
|
||||
"terminal.ansiWhite": "#aaaeb8",
|
||||
"terminal.ansiYellow": "#f9dc5c",
|
||||
"terminal.selectionBackground": "#7cb7ff7f",
|
||||
"terminalCursor.background": "#2f323e",
|
||||
"terminalCursor.foreground": "#9295a0",
|
||||
"debugToolBar.background": "#2f323e",
|
||||
"debugToolBar.border": "#474b56",
|
||||
"editor.stackFrameHighlightBackground": "#00c1e43f",
|
||||
"editor.focusedStackFrameHighlightBackground": "#71f79f3f",
|
||||
"debugView.exceptionLabelForeground": "#f9dc5c",
|
||||
"debugView.exceptionLabelBackground": "#2f323e",
|
||||
"debugView.stateLabelForeground": "#7cb7ff",
|
||||
"debugView.stateLabelBackground": "#2f323e",
|
||||
"debugView.valueChangedHighlight": "#f9dc5c33",
|
||||
"debugTokenExpression.name": "#7cb7ff",
|
||||
"debugTokenExpression.value": "#c3c7d1",
|
||||
"debugTokenExpression.string": "#71f79f",
|
||||
"debugTokenExpression.boolean": "#c3c7d1",
|
||||
"debugTokenExpression.number": "#c74d89",
|
||||
"debugTokenExpression.error": "#ed254e",
|
||||
"testing.iconFailed": "#dcdfe4",
|
||||
"testing.iconErrored": "#ed254e",
|
||||
"testing.iconPassed": "#71f79f",
|
||||
"testing.runAction": "#7cb7ff",
|
||||
"testing.iconQueued": "#00c1e4",
|
||||
"testing.iconUnset": "#9295a0",
|
||||
"testing.iconSkipped": "#797c87",
|
||||
"testing.peekBorder": "#60646f",
|
||||
"testing.message.error.decorationForeground": "#ed254e",
|
||||
"testing.message.error.lineBackground": "#ed254e3f",
|
||||
"testing.message.warning.decorationForeground": "#dcdfe4",
|
||||
"testing.message.warning.lineBackground": "#dcdfe43f",
|
||||
"testing.message.info.decorationForeground": "#7cb7ff",
|
||||
"testing.message.info.lineBackground": "#7cb7ff3f",
|
||||
"testing.message.hint.decorationForeground": "#c74d89",
|
||||
"testing.message.hint.lineBackground": "#c74d893f",
|
||||
"welcomePage.background": "#161925",
|
||||
"welcomePage.buttonBackground": "#2f323e",
|
||||
"welcomePage.buttonHoverBackground": "#474b56",
|
||||
"welcomePage.progress.background": "#7cb7ff",
|
||||
"welcomePage.progress.foreground": "#161925",
|
||||
"walkThrough.embeddedEditorBackground": "#161925",
|
||||
"scm.providerBorder": "#474b56",
|
||||
"gitDecoration.addedResourceForeground": "#71f79f",
|
||||
"gitDecoration.modifiedResourceForeground": "#f9dc5c",
|
||||
"gitDecoration.stageModifiedResourceForeground": "#00c1e4",
|
||||
"gitDecoration.deletedResourceForeground": "#ed254e",
|
||||
"gitDecoration.stageDeletedResourceForeground": "#ed254e",
|
||||
"gitDecoration.untrackedResourceForeground": "#c3c7d1",
|
||||
"gitDecoration.ignoredResourceForeground": "#60646f",
|
||||
"gitDecoration.conflictingResourceForeground": "#00c1e4",
|
||||
"gitDecoration.submoduleResourceForeground": "#c74d89",
|
||||
"settings.headerForeground": "#c3c7d1",
|
||||
"settings.modifiedItemIndicator": "#00c1e4",
|
||||
"settings.dropdownBackground": "#2f323e",
|
||||
"settings.dropdownForeground": "#aaaeb8",
|
||||
"settings.dropdownListBorder": "#474b56",
|
||||
"settings.checkboxBackground": "#7cb7ff",
|
||||
"settings.checkboxForeground": "#161925",
|
||||
"settings.checkboxBorder": "#7cb7ff",
|
||||
"settings.textInputBackground": "#2f323e",
|
||||
"settings.textInputForeground": "#aaaeb8",
|
||||
"settings.numberInputBackground": "#2f323e",
|
||||
"settings.numberInputForeground": "#aaaeb8",
|
||||
"settings.focusedRowBackground": "#161925",
|
||||
"notebook.focusedRowBorder": "#c3c7d1",
|
||||
"notebook.rowHoverBackground": "#2f323e7f",
|
||||
"breadcrumb.foreground": "#9295a0",
|
||||
"breadcrumb.background": "#161925",
|
||||
"breadcrumb.focusForeground": "#aaaeb8",
|
||||
"breadcrumb.activeSelectionForeground": "#c3c7d1",
|
||||
"breadcrumbPicker.background": "#161925",
|
||||
"editor.snippetTabstopHighlightBackground": "#2f323e7f",
|
||||
"editor.snippetFinalTabstopHighlightBackground": "#474b567f",
|
||||
"symbolIcon.arrayForeground": "#c74d89",
|
||||
"symbolIcon.booleanForeground": "#c3c7d1",
|
||||
"symbolIcon.classForeground": "#7cb7ff",
|
||||
"symbolIcon.colorForeground": "#00c1e4",
|
||||
"symbolIcon.constantForeground": "#71f79f",
|
||||
"symbolIcon.constructorForeground": "#c3c7d1",
|
||||
"symbolIcon.enumeratorForeground": "#00c1e4",
|
||||
"symbolIcon.enumeratorMemberForeground": "#7cb7ff",
|
||||
"symbolIcon.eventForeground": "#dcdfe4",
|
||||
"symbolIcon.fieldForeground": "#ed254e",
|
||||
"symbolIcon.fileForeground": "#aaaeb8",
|
||||
"symbolIcon.folderForeground": "#9295a0",
|
||||
"symbolIcon.functionForeground": "#c3c7d1",
|
||||
"symbolIcon.interfaceForeground": "#ed254e",
|
||||
"symbolIcon.keyForeground": "#f9dc5c",
|
||||
"symbolIcon.keywordForeground": "#7cb7ff",
|
||||
"symbolIcon.methodForeground": "#00c1e4",
|
||||
"symbolIcon.moduleForeground": "#00c1e4",
|
||||
"symbolIcon.namespaceForeground": "#7cb7ff",
|
||||
"symbolIcon.nullForeground": "#ed254e",
|
||||
"symbolIcon.numberForeground": "#dcdfe4",
|
||||
"symbolIcon.objectForeground": "#c3c7d1",
|
||||
"symbolIcon.operatorForeground": "#ed254e",
|
||||
"symbolIcon.packageForeground": "#dcdfe4",
|
||||
"symbolIcon.propertyForeground": "#00c1e4",
|
||||
"symbolIcon.referenceForeground": "#dcdfe4",
|
||||
"symbolIcon.snippetForeground": "#9295a0",
|
||||
"symbolIcon.stringForeground": "#71f79f",
|
||||
"symbolIcon.structForeground": "#7cb7ff",
|
||||
"symbolIcon.textForeground": "#c3c7d1",
|
||||
"symbolIcon.typeParameterForeground": "#7cb7ff",
|
||||
"symbolIcon.unitForeground": "#f9dc5c",
|
||||
"symbolIcon.variableForeground": "#dcdfe4",
|
||||
"debugIcon.breakpointForeground": "#ed254e",
|
||||
"debugIcon.breakpointDisabledForeground": "#797c87",
|
||||
"debugIcon.breakpointUnverifiedForeground": "#9295a0",
|
||||
"debugIcon.breakpointCurrentStackframeForeground": "#71f79f",
|
||||
"debugIcon.breakpointStackframeForeground": "#f9dc5c",
|
||||
"debugIcon.startForeground": "#71f79f",
|
||||
"debugIcon.pauseForeground": "#7cb7ff",
|
||||
"debugIcon.stopForeground": "#ed254e",
|
||||
"debugIcon.disconnectForeground": "#dcdfe4",
|
||||
"debugIcon.restartForeground": "#c74d89",
|
||||
"debugIcon.stepOverForeground": "#c3c7d1",
|
||||
"debugIcon.stepIntoForeground": "#c3c7d1",
|
||||
"debugIcon.stepOutForeground": "#c3c7d1",
|
||||
"debugIcon.continueForeground": "#71f79f",
|
||||
"debugIcon.stepBackForeground": "#c3c7d1",
|
||||
"debugConsole.infoForeground": "#7cb7ff",
|
||||
"debugConsole.warningForeground": "#dcdfe4",
|
||||
"debugConsole.errorForeground": "#ed254e",
|
||||
"debugConsole.sourceForeground": "#c3c7d1",
|
||||
"debugConsoleInputIcon.foreground": "#797c87",
|
||||
"notebook.cellBorderColor": "#2f323e3f",
|
||||
"notebook.focusedEditorBorder": "#2f323e",
|
||||
"notebookStatusSuccessIcon.foreground": "#71f79f",
|
||||
"notebookStatusErrorIcon.foreground": "#ed254e",
|
||||
"notebookStatusRunningIcon.foreground": "#7cb7ff",
|
||||
"notebook.outputContainerBackgroundColor": "#161925",
|
||||
"notebook.cellToolbarSeparator": "#2f323e3f",
|
||||
"notebook.focusedCellBackground": "#2f323e7f",
|
||||
"notebook.cellHoverBackground": "#2f323e3f",
|
||||
"notebook.focusedCellBorder": "#c3c7d1",
|
||||
"notebook.focusedCellShadow": "#0000003f",
|
||||
"notebook.selectedCellBorder": "#797c87",
|
||||
"notebook.cellStatusBarItemHoverBackground": "#2f323e3f",
|
||||
"notebook.cellInsertionIndicator": "#71f79f",
|
||||
"notebookScrollbarSlider.background": "#60646f7f",
|
||||
"notebookScrollbarSlider.hoverBackground": "#797c877f",
|
||||
"notebookScrollbarSlider.activeBackground": "#9295a07f",
|
||||
"notebook.symbolHighlightBackground": "#c3c7d13f",
|
||||
"notebook.inactiveFocusedCellBorder": "#9295a0",
|
||||
"charts.foreground": "#aaaeb8",
|
||||
"charts.lines": "#60646f",
|
||||
"charts.red": "#ed254e",
|
||||
"charts.blue": "#7cb7ff",
|
||||
"charts.yellow": "#f9dc5c",
|
||||
"charts.orange": "#dcdfe4",
|
||||
"charts.green": "#71f79f",
|
||||
"charts.purple": "#c3c7d1"
|
||||
},
|
||||
"tokenColors": [
|
||||
{
|
||||
"settings": {
|
||||
"background": "#161925",
|
||||
"foreground": "#aaaeb8",
|
||||
"selectionBorder": "#9295a0",
|
||||
"findHighlight": "#f9dc5c",
|
||||
"findHighlightForeground": "#161925",
|
||||
"activeGuide": "#dcdfe4",
|
||||
"bracketsForeground": "#aaaeb87F",
|
||||
"bracketsOptions": "stippled_underline",
|
||||
"bracketsContentsForeground": "#aaaeb87F",
|
||||
"tagsOptions": "stippled_underline"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Comment",
|
||||
"scope": "comment",
|
||||
"settings": {
|
||||
"foreground": "#60646f"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Constant",
|
||||
"scope": "constant",
|
||||
"settings": {
|
||||
"foreground": "#c74d89"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Entity",
|
||||
"scope": "entity",
|
||||
"settings": {
|
||||
"foreground": "#00c1e4"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Invalid",
|
||||
"scope": "invalid",
|
||||
"settings": {
|
||||
"foreground": "#ed254e"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Keyword",
|
||||
"scope": "keyword",
|
||||
"settings": {
|
||||
"foreground": "#c3c7d1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Storage",
|
||||
"scope": "storage",
|
||||
"settings": {
|
||||
"foreground": "#c74d89"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "String",
|
||||
"scope": "string",
|
||||
"settings": {
|
||||
"foreground": "#71f79f"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Support",
|
||||
"scope": "support",
|
||||
"settings": {
|
||||
"foreground": "#00c1e4"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Variable",
|
||||
"scope": "variable",
|
||||
"settings": {
|
||||
"foreground": "#c3c7d1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Heading",
|
||||
"scope": "markup.heading",
|
||||
"settings": {
|
||||
"foreground": "#00c1e4"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Deleted",
|
||||
"scope": "markup.deleted",
|
||||
"settings": {
|
||||
"foreground": "#ed254e"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Inserted",
|
||||
"scope": "markup.inserted",
|
||||
"settings": {
|
||||
"foreground": "#71f79f"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Changed",
|
||||
"scope": "markup.changed",
|
||||
"settings": {
|
||||
"foreground": "#f9dc5c"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Underline",
|
||||
"scope": "markup.underline",
|
||||
"settings": {
|
||||
"fontStyle": "underline"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Underline Link",
|
||||
"scope": "markup.underline.link",
|
||||
"settings": {
|
||||
"foreground": "#7cb7ff"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup List",
|
||||
"scope": "markup.list",
|
||||
"settings": {
|
||||
"foreground": "#c3c7d1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Raw",
|
||||
"scope": "markup.raw",
|
||||
"settings": {
|
||||
"foreground": "#c74d89"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
614
dotfiles/.vscode/extensions/theme-betelgeuse-vscode/themes/themer-light-color-theme.json
vendored
Normal file
614
dotfiles/.vscode/extensions/theme-betelgeuse-vscode/themes/themer-light-color-theme.json
vendored
Normal file
|
@ -0,0 +1,614 @@
|
|||
{
|
||||
"name": "Betelgeuse Light",
|
||||
"type": "light",
|
||||
"colors": {
|
||||
"focusBorder": "#4c5058",
|
||||
"foreground": "#4c5058",
|
||||
"widget.shadow": "#4c505866",
|
||||
"selection.background": "#cccdcf",
|
||||
"descriptionForeground": "#666970",
|
||||
"errorForeground": "#ff4972",
|
||||
"icon.foreground": "#666970",
|
||||
"sash.hoverBorder": "#a0dbff",
|
||||
"textBlockQuote.background": "#e5e6e7",
|
||||
"textBlockQuote.border": "#e5e6e7",
|
||||
"textCodeBlock.background": "#ffffff",
|
||||
"textLink.activeForeground": "#24e5ff",
|
||||
"textLink.foreground": "#a0dbff",
|
||||
"textPreformat.foreground": "#dcdfe4",
|
||||
"textSeparator.foreground": "#999ba0",
|
||||
"button.background": "#a0dbff",
|
||||
"button.foreground": "#ffffff",
|
||||
"button.hoverBackground": "#24e5ff",
|
||||
"button.secondaryForeground": "#ffffff",
|
||||
"button.secondaryBackground": "#666970",
|
||||
"button.secondaryHoverBackground": "#7f8288",
|
||||
"checkbox.background": "#a0dbff",
|
||||
"checkbox.foreground": "#ffffff",
|
||||
"checkbox.border": "#e5e6e7",
|
||||
"dropdown.background": "#e5e6e7",
|
||||
"dropdown.listBackground": "#e5e6e7",
|
||||
"dropdown.border": "#e5e6e7",
|
||||
"dropdown.foreground": "#666970",
|
||||
"input.background": "#e5e6e7",
|
||||
"input.border": "#e5e6e7",
|
||||
"input.foreground": "#666970",
|
||||
"input.placeholderForeground": "#cccdcf",
|
||||
"inputOption.activeBackground": "#cccdcf",
|
||||
"inputOption.activeBorder": "#24e5ff",
|
||||
"inputOption.activeForeground": "#4c5058",
|
||||
"inputValidation.errorBackground": "#e5e6e7",
|
||||
"inputValidation.errorForeground": "#ff4972",
|
||||
"inputValidation.errorBorder": "#ff4972",
|
||||
"inputValidation.infoBackground": "#e5e6e7",
|
||||
"inputValidation.infoForeground": "#a0dbff",
|
||||
"inputValidation.infoBorder": "#a0dbff",
|
||||
"inputValidation.warningBackground": "#e5e6e7",
|
||||
"inputValidation.warningForeground": "#dcdfe4",
|
||||
"inputValidation.warningBorder": "#dcdfe4",
|
||||
"scrollbar.shadow": "#4c505866",
|
||||
"scrollbarSlider.activeBackground": "#7f82887f",
|
||||
"scrollbarSlider.background": "#b2b4b77f",
|
||||
"scrollbarSlider.hoverBackground": "#999ba07f",
|
||||
"badge.foreground": "#ffffff",
|
||||
"badge.background": "#4c5058",
|
||||
"progressBar.background": "#95ffc3",
|
||||
"list.activeSelectionBackground": "#4c505833",
|
||||
"list.activeSelectionForeground": "#4c5058",
|
||||
"list.dropBackground": "#e5e6e7",
|
||||
"list.focusBackground": "#b2b4b73f",
|
||||
"list.focusForeground": "#4c5058",
|
||||
"list.highlightForeground": "#ffff80",
|
||||
"list.hoverBackground": "#e5e6e733",
|
||||
"list.hoverForeground": "#4c5058",
|
||||
"list.inactiveSelectionBackground": "#cccdcf3f",
|
||||
"list.inactiveSelectionForeground": "#666970",
|
||||
"list.inactiveFocusBackground": "#e5e6e73f",
|
||||
"list.invalidItemForeground": "#ff4972",
|
||||
"list.errorForeground": "#ff4972",
|
||||
"list.warningForeground": "#ffff80",
|
||||
"listFilterWidget.background": "#e5e6e7",
|
||||
"listFilterWidget.outline": "#a0dbff",
|
||||
"listFilterWidget.noMatchesOutline": "#ff4972",
|
||||
"list.filterMatchBackground": "#ffff8033",
|
||||
"list.filterMatchBorder": "#ffff8033",
|
||||
"tree.indentGuidesStroke": "#e5e6e7",
|
||||
"list.deemphasizedForeground": "#999ba0",
|
||||
"activityBar.background": "#ffffff",
|
||||
"activityBar.dropBorder": "#a0dbff",
|
||||
"activityBar.foreground": "#7f8288",
|
||||
"activityBar.inactiveForeground": "#999ba0",
|
||||
"activityBar.border": "#ffffff",
|
||||
"activityBarBadge.background": "#4c5058",
|
||||
"activityBarBadge.foreground": "#ffffff",
|
||||
"activityBar.activeBorder": "#666970",
|
||||
"activityBar.activeBackground": "#e5e6e733",
|
||||
"activityBar.activeFocusBorder": "#4c5058",
|
||||
"sideBar.background": "#ffffff",
|
||||
"sideBar.foreground": "#666970",
|
||||
"sideBar.border": "#e5e6e7",
|
||||
"sideBar.dropBackground": "#e5e6e73f",
|
||||
"sideBarTitle.foreground": "#7f8288",
|
||||
"sideBarSectionHeader.background": "#cccdcf",
|
||||
"sideBarSectionHeader.foreground": "#666970",
|
||||
"sideBarSectionHeader.border": "#ffffff",
|
||||
"minimap.findMatchHighlight": "#ffff80",
|
||||
"minimap.selectionHighlight": "#a0dbff80",
|
||||
"minimap.errorHighlight": "#ff497280",
|
||||
"minimap.warningHighlight": "#dcdfe480",
|
||||
"minimap.background": "#ffffff",
|
||||
"minimapSlider.background": "#e5e6e733",
|
||||
"minimapSlider.hoverBackground": "#cccdcf33",
|
||||
"minimapSlider.activeBackground": "#b2b4b733",
|
||||
"minimapGutter.addedBackground": "#95ffc380",
|
||||
"minimapGutter.modifiedBackground": "#ffff8080",
|
||||
"minimapGutter.deletedBackground": "#ff497280",
|
||||
"editorGroup.border": "#e5e6e7",
|
||||
"editorGroup.dropBackground": "#cccdcf7f",
|
||||
"editorGroupHeader.noTabsBackground": "#ffffff",
|
||||
"editorGroupHeader.tabsBackground": "#ffffff",
|
||||
"editorGroupHeader.tabsBorder": "#ffffff",
|
||||
"editorGroupHeader.border": "#ffffff",
|
||||
"editorGroup.emptyBackground": "#ffffff",
|
||||
"editorGroup.focusedEmptyBorder": "#e5e6e7",
|
||||
"tab.activeBackground": "#ffffff",
|
||||
"tab.unfocusedActiveBackground": "#ffffff",
|
||||
"tab.activeForeground": "#666970",
|
||||
"tab.border": "#ffffff",
|
||||
"tab.lastPinnedBorder": "#eb71ad",
|
||||
"tab.inactiveBackground": "#e5e6e7",
|
||||
"tab.unfocusedInactiveBackground": "#e5e6e7",
|
||||
"tab.inactiveForeground": "#b2b4b7",
|
||||
"tab.unfocusedActiveForeground": "#b2b4b7",
|
||||
"tab.unfocusedInactiveForeground": "#cccdcf",
|
||||
"tab.hoverBackground": "#e5e6e780",
|
||||
"tab.unfocusedHoverBackground": "#e5e6e780",
|
||||
"tab.hoverForeground": "#7f8288",
|
||||
"tab.unfocusedHoverForeground": "#999ba0",
|
||||
"tab.activeModifiedBorder": "#ffff80",
|
||||
"tab.inactiveModifiedBorder": "#ffff80",
|
||||
"tab.unfocusedActiveModifiedBorder": "#ffff80",
|
||||
"tab.unfocusedInactiveModifiedBorder": "#ffff80",
|
||||
"editorPane.background": "#ffffff",
|
||||
"editor.background": "#ffffff",
|
||||
"editor.foreground": "#4c5058",
|
||||
"editorLineNumber.foreground": "#cccdcf",
|
||||
"editorLineNumber.activeForeground": "#999ba0",
|
||||
"editorCursor.background": "#ffffff",
|
||||
"editorCursor.foreground": "#4c5058",
|
||||
"editor.selectionBackground": "#a0dbff33",
|
||||
"editor.selectionForeground": "#4c5058",
|
||||
"editor.inactiveSelectionBackground": "#a0dbff33",
|
||||
"editor.selectionHighlightBackground": "#e5e6e7",
|
||||
"editor.wordHighlightBackground": "#4c505833",
|
||||
"editor.wordHighlightStrongBackground": "#eb71ad33",
|
||||
"editor.findMatchBackground": "#ffff803f",
|
||||
"editor.findMatchHighlightBackground": "#ffff8033",
|
||||
"editor.findRangeHighlightBackground": "#e5e6e7",
|
||||
"editor.hoverHighlightBackground": "#cccdcf7f",
|
||||
"editor.lineHighlightBackground": "#ffffff",
|
||||
"editor.lineHighlightBorder": "#e5e6e7",
|
||||
"editorLink.activeForeground": "#24e5ff",
|
||||
"editor.rangeHighlightBackground": "#ffff8033",
|
||||
"editor.symbolHighlightBackground": "#4c505833",
|
||||
"editorWhitespace.foreground": "#e5e6e7",
|
||||
"editorIndentGuide.background": "#e5e6e7",
|
||||
"editorIndentGuide.activeBackground": "#cccdcf",
|
||||
"editorRuler.foreground": "#e5e6e7",
|
||||
"editorCodeLens.foreground": "#7f8288",
|
||||
"editorLightBulb.foreground": "#ffff80",
|
||||
"editorLightBulbAutoFix.foreground": "#a0dbff",
|
||||
"editorBracketMatch.background": "#e5e6e7",
|
||||
"editorBracketMatch.border": "#cccdcf",
|
||||
"editorBracketHighlight.foreground1": "#4c5058",
|
||||
"editorBracketHighlight.foreground2": "#ffff80",
|
||||
"editorBracketHighlight.foreground3": "#24e5ff",
|
||||
"editorBracketHighlight.foreground4": "#4c5058",
|
||||
"editorBracketHighlight.foreground5": "#95ffc3",
|
||||
"editorBracketHighlight.foreground6": "#a0dbff",
|
||||
"editorBracketHighlight.unexpectedBracket": "#ff4972",
|
||||
"editor.foldBackground": "#e5e6e766",
|
||||
"editorOverviewRuler.border": "#e5e6e7",
|
||||
"editorOverviewRuler.findMatchForeground": "#ffff80bf",
|
||||
"editorOverviewRuler.rangeHighlightForeground": "#cccdcfbf",
|
||||
"editorOverviewRuler.selectionHighlightForeground": "#e5e6e7bf",
|
||||
"editorOverviewRuler.wordHighlightForeground": "#cccdcfbf",
|
||||
"editorOverviewRuler.wordHighlightStrongForeground": "#b2b4b7bf",
|
||||
"editorOverviewRuler.modifiedForeground": "#ffff807f",
|
||||
"editorOverviewRuler.addedForeground": "#95ffc37f",
|
||||
"editorOverviewRuler.deletedForeground": "#ff49727f",
|
||||
"editorOverviewRuler.errorForeground": "#ff49727f",
|
||||
"editorOverviewRuler.warningForeground": "#dcdfe47f",
|
||||
"editorOverviewRuler.infoForeground": "#a0dbff7f",
|
||||
"editorOverviewRuler.bracketMatchForeground": "#b2b4b7",
|
||||
"editorError.foreground": "#ff4972",
|
||||
"editorError.border": "#4c5058",
|
||||
"editorWarning.foreground": "#dcdfe4",
|
||||
"editorWarning.border": "#666970",
|
||||
"editorInfo.foreground": "#a0dbff",
|
||||
"editorInfo.border": "#7f8288",
|
||||
"editorHint.foreground": "#eb71ad",
|
||||
"editorHint.border": "#999ba0",
|
||||
"problemsErrorIcon.foreground": "#ff4972",
|
||||
"problemsWarningIcon.foreground": "#dcdfe4",
|
||||
"problemsInfoIcon.foreground": "#a0dbff",
|
||||
"editorUnnecessaryCode.opacity": "#0000007f",
|
||||
"editorGutter.background": "#ffffff",
|
||||
"editorGutter.modifiedBackground": "#ffff80",
|
||||
"editorGutter.addedBackground": "#95ffc3",
|
||||
"editorGutter.deletedBackground": "#ff4972",
|
||||
"editorGutter.commentRangeForeground": "#b2b4b7",
|
||||
"editorGutter.foldingControlForeground": "#7f8288",
|
||||
"diffEditor.insertedTextBackground": "#95ffc320",
|
||||
"diffEditor.removedTextBackground": "#ff497220",
|
||||
"diffEditor.border": "#e5e6e7",
|
||||
"diffEditor.diagonalFill": "#e5e6e77f",
|
||||
"editorWidget.foreground": "#666970",
|
||||
"editorWidget.background": "#e5e6e7",
|
||||
"editorWidget.border": "#e5e6e7",
|
||||
"editorWidget.resizeBorder": "#a0dbff",
|
||||
"editorSuggestWidget.background": "#e5e6e7",
|
||||
"editorSuggestWidget.border": "#e5e6e7",
|
||||
"editorSuggestWidget.foreground": "#666970",
|
||||
"editorSuggestWidget.highlightForeground": "#eb71ad",
|
||||
"editorSuggestWidget.selectedBackground": "#cccdcf",
|
||||
"editorHoverWidget.foreground": "#666970",
|
||||
"editorHoverWidget.background": "#e5e6e7",
|
||||
"editorHoverWidget.border": "#e5e6e7",
|
||||
"editorHoverWidget.statusBarBackground": "#a0dbff33",
|
||||
"debugExceptionWidget.background": "#e5e6e7",
|
||||
"debugExceptionWidget.border": "#e5e6e7",
|
||||
"editorMarkerNavigation.background": "#e5e6e7",
|
||||
"editorMarkerNavigationError.background": "#ff4972",
|
||||
"editorMarkerNavigationWarning.background": "#dcdfe4",
|
||||
"editorMarkerNavigationInfo.background": "#a0dbff",
|
||||
"peekView.border": "#eb71ad",
|
||||
"peekViewEditor.background": "#e5e6e77f",
|
||||
"peekViewEditorGutter.background": "#e5e6e77f",
|
||||
"peekViewEditor.matchHighlightBackground": "#ffff807f",
|
||||
"peekViewResult.background": "#e5e6e7",
|
||||
"peekViewResult.fileForeground": "#666970",
|
||||
"peekViewResult.lineForeground": "#cccdcf",
|
||||
"peekViewResult.matchHighlightBackground": "#ffff80",
|
||||
"peekViewResult.selectionBackground": "#b2b4b7",
|
||||
"peekViewResult.selectionForeground": "#4c5058",
|
||||
"peekViewTitle.background": "#e5e6e7",
|
||||
"peekViewTitleDescription.foreground": "#7f8288",
|
||||
"peekViewTitleLabel.foreground": "#4c5058",
|
||||
"merge.currentHeaderBackground": "#24e5ff4c",
|
||||
"merge.currentContentBackground": "#24e5ff4c",
|
||||
"merge.incomingHeaderBackground": "#a0dbff4c",
|
||||
"merge.incomingContentBackground": "#a0dbff4c",
|
||||
"merge.border": "#999ba0",
|
||||
"merge.commonContentBackground": "#4c50584c",
|
||||
"merge.commonHeaderBackground": "#4c50584c",
|
||||
"editorOverviewRuler.currentContentForeground": "#24e5ff",
|
||||
"editorOverviewRuler.incomingContentForeground": "#a0dbff",
|
||||
"editorOverviewRuler.commonContentForeground": "#4c5058",
|
||||
"panel.background": "#ffffff",
|
||||
"panel.border": "#e5e6e7",
|
||||
"panel.dropBorder": "#a0dbff",
|
||||
"panelTitle.activeBorder": "#b2b4b7",
|
||||
"panelTitle.activeForeground": "#666970",
|
||||
"panelTitle.inactiveForeground": "#999ba0",
|
||||
"panelSection.border": "#e5e6e7",
|
||||
"panelSection.dropBackground": "#e5e6e73f",
|
||||
"panelSectionHeader.background": "#cccdcf",
|
||||
"panelSectionHeader.foreground": "#666970",
|
||||
"panelSectionHeader.border": "#ffffff",
|
||||
"imagePreview.border": "#e5e6e7",
|
||||
"statusBar.background": "#a0dbff",
|
||||
"statusBar.foreground": "#ffffff",
|
||||
"statusBar.border": "#ffffff",
|
||||
"statusBar.debuggingBackground": "#dcdfe4",
|
||||
"statusBar.debuggingForeground": "#ffffff",
|
||||
"statusBar.debuggingBorder": "#ffffff",
|
||||
"statusBar.noFolderBackground": "#4c5058",
|
||||
"statusBar.noFolderForeground": "#ffffff",
|
||||
"statusBar.noFolderBorder": "#ffffff",
|
||||
"statusBarItem.activeBackground": "#24e5ff",
|
||||
"statusBarItem.hoverBackground": "#95ffc3",
|
||||
"statusBarItem.prominentBackground": "#24e5ff",
|
||||
"statusBarItem.prominentHoverBackground": "#95ffc3",
|
||||
"statusBarItem.remoteBackground": "#24e5ff",
|
||||
"statusBarItem.remoteForeground": "#ffffff",
|
||||
"statusBarItem.errorBackground": "#ff4972",
|
||||
"statusBarItem.errorForeground": "#ffffff",
|
||||
"titleBar.activeBackground": "#ffffff",
|
||||
"titleBar.activeForeground": "#7f8288",
|
||||
"titleBar.inactiveBackground": "#ffffff",
|
||||
"titleBar.inactiveForeground": "#b2b4b7",
|
||||
"menubar.selectionForeground": "#4c5058",
|
||||
"menubar.selectionBackground": "#e5e6e7",
|
||||
"menu.foreground": "#666970",
|
||||
"menu.background": "#ffffff",
|
||||
"menu.selectionForeground": "#4c5058",
|
||||
"menu.selectionBackground": "#e5e6e7",
|
||||
"menu.separatorBackground": "#cccdcf",
|
||||
"notificationCenterHeader.foreground": "#666970",
|
||||
"notificationCenterHeader.background": "#cccdcf",
|
||||
"notificationToast.border": "#b2b4b7",
|
||||
"notifications.foreground": "#4c5058",
|
||||
"notifications.background": "#e5e6e7",
|
||||
"notifications.border": "#b2b4b7",
|
||||
"notificationLink.foreground": "#a0dbff",
|
||||
"notificationsErrorIcon.foreground": "#ff4972",
|
||||
"notificationsWarningIcon.foreground": "#dcdfe4",
|
||||
"notificationsInfoIcon.foreground": "#a0dbff",
|
||||
"extensionButton.prominentForeground": "#ffffff",
|
||||
"extensionButton.prominentBackground": "#a0dbff",
|
||||
"extensionButton.prominentHoverBackground": "#24e5ff",
|
||||
"extensionBadge.remoteBackground": "#eb71ad",
|
||||
"extensionBadge.remoteForeground": "#ffffff",
|
||||
"pickerGroup.border": "#cccdcf",
|
||||
"pickerGroup.foreground": "#999ba0",
|
||||
"quickInput.background": "#e5e6e7",
|
||||
"quickInput.foreground": "#4c5058",
|
||||
"quickInputTitle.background": "#cccdcf",
|
||||
"terminal.background": "#ffffff",
|
||||
"terminal.foreground": "#666970",
|
||||
"terminal.ansiBlack": "#ffffff",
|
||||
"terminal.ansiBlue": "#a0dbff",
|
||||
"terminal.ansiBrightBlack": "#e5e6e7",
|
||||
"terminal.ansiBrightBlue": "#a0dbff",
|
||||
"terminal.ansiBrightCyan": "#24e5ff",
|
||||
"terminal.ansiBrightGreen": "#24e5ff",
|
||||
"terminal.ansiBrightMagenta": "#eb71ad",
|
||||
"terminal.ansiBrightRed": "#dcdfe4",
|
||||
"terminal.ansiBrightWhite": "#4c5058",
|
||||
"terminal.ansiBrightYellow": "#ffff80",
|
||||
"terminal.ansiCyan": "#24e5ff",
|
||||
"terminal.ansiGreen": "#95ffc3",
|
||||
"terminal.ansiMagenta": "#eb71ad",
|
||||
"terminal.ansiRed": "#ff4972",
|
||||
"terminal.ansiWhite": "#666970",
|
||||
"terminal.ansiYellow": "#ffff80",
|
||||
"terminal.selectionBackground": "#a0dbff7f",
|
||||
"terminalCursor.background": "#e5e6e7",
|
||||
"terminalCursor.foreground": "#7f8288",
|
||||
"debugToolBar.background": "#e5e6e7",
|
||||
"debugToolBar.border": "#cccdcf",
|
||||
"editor.stackFrameHighlightBackground": "#24e5ff3f",
|
||||
"editor.focusedStackFrameHighlightBackground": "#95ffc33f",
|
||||
"debugView.exceptionLabelForeground": "#ffff80",
|
||||
"debugView.exceptionLabelBackground": "#e5e6e7",
|
||||
"debugView.stateLabelForeground": "#a0dbff",
|
||||
"debugView.stateLabelBackground": "#e5e6e7",
|
||||
"debugView.valueChangedHighlight": "#ffff8033",
|
||||
"debugTokenExpression.name": "#a0dbff",
|
||||
"debugTokenExpression.value": "#4c5058",
|
||||
"debugTokenExpression.string": "#95ffc3",
|
||||
"debugTokenExpression.boolean": "#4c5058",
|
||||
"debugTokenExpression.number": "#eb71ad",
|
||||
"debugTokenExpression.error": "#ff4972",
|
||||
"testing.iconFailed": "#dcdfe4",
|
||||
"testing.iconErrored": "#ff4972",
|
||||
"testing.iconPassed": "#95ffc3",
|
||||
"testing.runAction": "#a0dbff",
|
||||
"testing.iconQueued": "#24e5ff",
|
||||
"testing.iconUnset": "#7f8288",
|
||||
"testing.iconSkipped": "#999ba0",
|
||||
"testing.peekBorder": "#b2b4b7",
|
||||
"testing.message.error.decorationForeground": "#ff4972",
|
||||
"testing.message.error.lineBackground": "#ff49723f",
|
||||
"testing.message.warning.decorationForeground": "#dcdfe4",
|
||||
"testing.message.warning.lineBackground": "#dcdfe43f",
|
||||
"testing.message.info.decorationForeground": "#a0dbff",
|
||||
"testing.message.info.lineBackground": "#a0dbff3f",
|
||||
"testing.message.hint.decorationForeground": "#eb71ad",
|
||||
"testing.message.hint.lineBackground": "#eb71ad3f",
|
||||
"welcomePage.background": "#ffffff",
|
||||
"welcomePage.buttonBackground": "#e5e6e7",
|
||||
"welcomePage.buttonHoverBackground": "#cccdcf",
|
||||
"welcomePage.progress.background": "#a0dbff",
|
||||
"welcomePage.progress.foreground": "#ffffff",
|
||||
"walkThrough.embeddedEditorBackground": "#ffffff",
|
||||
"scm.providerBorder": "#cccdcf",
|
||||
"gitDecoration.addedResourceForeground": "#95ffc3",
|
||||
"gitDecoration.modifiedResourceForeground": "#ffff80",
|
||||
"gitDecoration.stageModifiedResourceForeground": "#24e5ff",
|
||||
"gitDecoration.deletedResourceForeground": "#ff4972",
|
||||
"gitDecoration.stageDeletedResourceForeground": "#ff4972",
|
||||
"gitDecoration.untrackedResourceForeground": "#4c5058",
|
||||
"gitDecoration.ignoredResourceForeground": "#b2b4b7",
|
||||
"gitDecoration.conflictingResourceForeground": "#24e5ff",
|
||||
"gitDecoration.submoduleResourceForeground": "#eb71ad",
|
||||
"settings.headerForeground": "#4c5058",
|
||||
"settings.modifiedItemIndicator": "#24e5ff",
|
||||
"settings.dropdownBackground": "#e5e6e7",
|
||||
"settings.dropdownForeground": "#666970",
|
||||
"settings.dropdownListBorder": "#cccdcf",
|
||||
"settings.checkboxBackground": "#a0dbff",
|
||||
"settings.checkboxForeground": "#ffffff",
|
||||
"settings.checkboxBorder": "#a0dbff",
|
||||
"settings.textInputBackground": "#e5e6e7",
|
||||
"settings.textInputForeground": "#666970",
|
||||
"settings.numberInputBackground": "#e5e6e7",
|
||||
"settings.numberInputForeground": "#666970",
|
||||
"settings.focusedRowBackground": "#ffffff",
|
||||
"notebook.focusedRowBorder": "#4c5058",
|
||||
"notebook.rowHoverBackground": "#e5e6e77f",
|
||||
"breadcrumb.foreground": "#7f8288",
|
||||
"breadcrumb.background": "#ffffff",
|
||||
"breadcrumb.focusForeground": "#666970",
|
||||
"breadcrumb.activeSelectionForeground": "#4c5058",
|
||||
"breadcrumbPicker.background": "#ffffff",
|
||||
"editor.snippetTabstopHighlightBackground": "#e5e6e77f",
|
||||
"editor.snippetFinalTabstopHighlightBackground": "#cccdcf7f",
|
||||
"symbolIcon.arrayForeground": "#eb71ad",
|
||||
"symbolIcon.booleanForeground": "#4c5058",
|
||||
"symbolIcon.classForeground": "#a0dbff",
|
||||
"symbolIcon.colorForeground": "#24e5ff",
|
||||
"symbolIcon.constantForeground": "#95ffc3",
|
||||
"symbolIcon.constructorForeground": "#4c5058",
|
||||
"symbolIcon.enumeratorForeground": "#24e5ff",
|
||||
"symbolIcon.enumeratorMemberForeground": "#a0dbff",
|
||||
"symbolIcon.eventForeground": "#dcdfe4",
|
||||
"symbolIcon.fieldForeground": "#ff4972",
|
||||
"symbolIcon.fileForeground": "#666970",
|
||||
"symbolIcon.folderForeground": "#7f8288",
|
||||
"symbolIcon.functionForeground": "#4c5058",
|
||||
"symbolIcon.interfaceForeground": "#ff4972",
|
||||
"symbolIcon.keyForeground": "#ffff80",
|
||||
"symbolIcon.keywordForeground": "#a0dbff",
|
||||
"symbolIcon.methodForeground": "#24e5ff",
|
||||
"symbolIcon.moduleForeground": "#24e5ff",
|
||||
"symbolIcon.namespaceForeground": "#a0dbff",
|
||||
"symbolIcon.nullForeground": "#ff4972",
|
||||
"symbolIcon.numberForeground": "#dcdfe4",
|
||||
"symbolIcon.objectForeground": "#4c5058",
|
||||
"symbolIcon.operatorForeground": "#ff4972",
|
||||
"symbolIcon.packageForeground": "#dcdfe4",
|
||||
"symbolIcon.propertyForeground": "#24e5ff",
|
||||
"symbolIcon.referenceForeground": "#dcdfe4",
|
||||
"symbolIcon.snippetForeground": "#7f8288",
|
||||
"symbolIcon.stringForeground": "#95ffc3",
|
||||
"symbolIcon.structForeground": "#a0dbff",
|
||||
"symbolIcon.textForeground": "#4c5058",
|
||||
"symbolIcon.typeParameterForeground": "#a0dbff",
|
||||
"symbolIcon.unitForeground": "#ffff80",
|
||||
"symbolIcon.variableForeground": "#dcdfe4",
|
||||
"debugIcon.breakpointForeground": "#ff4972",
|
||||
"debugIcon.breakpointDisabledForeground": "#999ba0",
|
||||
"debugIcon.breakpointUnverifiedForeground": "#7f8288",
|
||||
"debugIcon.breakpointCurrentStackframeForeground": "#95ffc3",
|
||||
"debugIcon.breakpointStackframeForeground": "#ffff80",
|
||||
"debugIcon.startForeground": "#95ffc3",
|
||||
"debugIcon.pauseForeground": "#a0dbff",
|
||||
"debugIcon.stopForeground": "#ff4972",
|
||||
"debugIcon.disconnectForeground": "#dcdfe4",
|
||||
"debugIcon.restartForeground": "#eb71ad",
|
||||
"debugIcon.stepOverForeground": "#4c5058",
|
||||
"debugIcon.stepIntoForeground": "#4c5058",
|
||||
"debugIcon.stepOutForeground": "#4c5058",
|
||||
"debugIcon.continueForeground": "#95ffc3",
|
||||
"debugIcon.stepBackForeground": "#4c5058",
|
||||
"debugConsole.infoForeground": "#a0dbff",
|
||||
"debugConsole.warningForeground": "#dcdfe4",
|
||||
"debugConsole.errorForeground": "#ff4972",
|
||||
"debugConsole.sourceForeground": "#4c5058",
|
||||
"debugConsoleInputIcon.foreground": "#999ba0",
|
||||
"notebook.cellBorderColor": "#e5e6e73f",
|
||||
"notebook.focusedEditorBorder": "#e5e6e7",
|
||||
"notebookStatusSuccessIcon.foreground": "#95ffc3",
|
||||
"notebookStatusErrorIcon.foreground": "#ff4972",
|
||||
"notebookStatusRunningIcon.foreground": "#a0dbff",
|
||||
"notebook.outputContainerBackgroundColor": "#ffffff",
|
||||
"notebook.cellToolbarSeparator": "#e5e6e73f",
|
||||
"notebook.focusedCellBackground": "#e5e6e77f",
|
||||
"notebook.cellHoverBackground": "#e5e6e73f",
|
||||
"notebook.focusedCellBorder": "#4c5058",
|
||||
"notebook.focusedCellShadow": "#0000003f",
|
||||
"notebook.selectedCellBorder": "#999ba0",
|
||||
"notebook.cellStatusBarItemHoverBackground": "#e5e6e73f",
|
||||
"notebook.cellInsertionIndicator": "#95ffc3",
|
||||
"notebookScrollbarSlider.background": "#b2b4b77f",
|
||||
"notebookScrollbarSlider.hoverBackground": "#999ba07f",
|
||||
"notebookScrollbarSlider.activeBackground": "#7f82887f",
|
||||
"notebook.symbolHighlightBackground": "#4c50583f",
|
||||
"notebook.inactiveFocusedCellBorder": "#7f8288",
|
||||
"charts.foreground": "#666970",
|
||||
"charts.lines": "#b2b4b7",
|
||||
"charts.red": "#ff4972",
|
||||
"charts.blue": "#a0dbff",
|
||||
"charts.yellow": "#ffff80",
|
||||
"charts.orange": "#dcdfe4",
|
||||
"charts.green": "#95ffc3",
|
||||
"charts.purple": "#4c5058"
|
||||
},
|
||||
"tokenColors": [
|
||||
{
|
||||
"settings": {
|
||||
"background": "#ffffff",
|
||||
"foreground": "#666970",
|
||||
"selectionBorder": "#7f8288",
|
||||
"findHighlight": "#ffff80",
|
||||
"findHighlightForeground": "#ffffff",
|
||||
"activeGuide": "#dcdfe4",
|
||||
"bracketsForeground": "#6669707F",
|
||||
"bracketsOptions": "stippled_underline",
|
||||
"bracketsContentsForeground": "#6669707F",
|
||||
"tagsOptions": "stippled_underline"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Comment",
|
||||
"scope": "comment",
|
||||
"settings": {
|
||||
"foreground": "#b2b4b7"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Constant",
|
||||
"scope": "constant",
|
||||
"settings": {
|
||||
"foreground": "#eb71ad"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Entity",
|
||||
"scope": "entity",
|
||||
"settings": {
|
||||
"foreground": "#24e5ff"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Invalid",
|
||||
"scope": "invalid",
|
||||
"settings": {
|
||||
"foreground": "#ff4972"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Keyword",
|
||||
"scope": "keyword",
|
||||
"settings": {
|
||||
"foreground": "#4c5058"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Storage",
|
||||
"scope": "storage",
|
||||
"settings": {
|
||||
"foreground": "#eb71ad"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "String",
|
||||
"scope": "string",
|
||||
"settings": {
|
||||
"foreground": "#95ffc3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Support",
|
||||
"scope": "support",
|
||||
"settings": {
|
||||
"foreground": "#24e5ff"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Variable",
|
||||
"scope": "variable",
|
||||
"settings": {
|
||||
"foreground": "#4c5058"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Heading",
|
||||
"scope": "markup.heading",
|
||||
"settings": {
|
||||
"foreground": "#24e5ff"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Deleted",
|
||||
"scope": "markup.deleted",
|
||||
"settings": {
|
||||
"foreground": "#ff4972"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Inserted",
|
||||
"scope": "markup.inserted",
|
||||
"settings": {
|
||||
"foreground": "#95ffc3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Changed",
|
||||
"scope": "markup.changed",
|
||||
"settings": {
|
||||
"foreground": "#ffff80"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Underline",
|
||||
"scope": "markup.underline",
|
||||
"settings": {
|
||||
"fontStyle": "underline"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Underline Link",
|
||||
"scope": "markup.underline.link",
|
||||
"settings": {
|
||||
"foreground": "#a0dbff"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup List",
|
||||
"scope": "markup.list",
|
||||
"settings": {
|
||||
"foreground": "#4c5058"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Markup Raw",
|
||||
"scope": "markup.raw",
|
||||
"settings": {
|
||||
"foreground": "#eb71ad"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue