themes - add last pinned tab color to default themes

This commit is contained in:
Benjamin Pasero 2020-10-06 07:59:56 +02:00
parent c7c471bdde
commit cc594b88d8
10 changed files with 9 additions and 6 deletions

View file

@ -390,13 +390,13 @@
"tab.inactiveBackground": "#10192c",
// "tab.activeForeground": "",
// "tab.inactiveForeground": "",
"tab.lastPinnedBorder": "#596F99",
// Workbench: Activity Bar
"activityBar.background": "#051336",
// "activityBar.foreground": "",
// "activityBarBadge.background": "",
// "activityBarBadge.foreground": "",
// "activityBar.dropBackground": "",
// Workbench: Panel
// "panel.background": "",

View file

@ -23,6 +23,7 @@
"editorGroupHeader.tabsBackground": "#131510",
"editorLineNumber.activeForeground": "#adadad",
"tab.inactiveBackground": "#131510",
"tab.lastPinnedBorder": "#5e452b",
"titleBar.activeBackground": "#423523",
"statusBar.background": "#423523",
"statusBar.debuggingBackground": "#423523",

View file

@ -25,6 +25,7 @@
"tab.inactiveBackground": "#404040",
"tab.border": "#303030",
"tab.inactiveForeground": "#d8d8d8",
"tab.lastPinnedBorder": "#505050",
"peekView.border": "#3655b5",
"panelTitle.activeForeground": "#ffffff",
"statusBar.background": "#505050",
@ -40,7 +41,6 @@
"menu.background": "#272727",
"menu.foreground": "#CCCCCC",
"pickerGroup.foreground": "#b0b0b0",
"terminal.ansiWhite": "#ffffff",
"inputOption.activeBorder": "#3655b5",
"focusBorder": "#3655b5",
"terminal.ansiBlack": "#1e1e1e",

View file

@ -35,6 +35,7 @@
"tab.inactiveBackground": "#34352f",
"tab.border": "#1e1f1c",
"tab.inactiveForeground": "#ccccc7", // needs to be bright so it's readable when another editor group is focused
"tab.lastPinnedBorder": "#75715E",
"widget.shadow": "#000000",
"progressBar.background": "#75715E",
"badge.background": "#75715E",
@ -52,7 +53,6 @@
"statusBarItem.remoteBackground": "#AC6218",
"activityBar.background": "#272822",
"activityBar.foreground": "#f8f8f2",
"activityBar.dropBackground": "#414339",
"sideBar.background": "#1e1f1c",
"sideBarSectionHeader.background": "#272822",
"menu.background": "#1e1f1c",

View file

@ -472,6 +472,7 @@
"peekViewResult.background": "#F2F8FC",
"peekView.border": "#705697",
"peekViewResult.matchHighlightBackground": "#93C6D6",
"tab.lastPinnedBorder": "#C9D0D988",
"statusBar.background": "#705697",
"statusBar.noFolderBackground": "#705697",
"statusBar.debuggingBackground": "#705697",

View file

@ -5,6 +5,7 @@
"activityBar.background": "#580000",
"tab.inactiveBackground": "#300a0a",
"tab.activeBackground": "#490000",
"tab.lastPinnedBorder": "#ff000044",
"sideBar.background": "#330000",
"statusBar.background": "#700000",
"statusBar.noFolderBackground": "#700000",

View file

@ -434,11 +434,11 @@
"tab.inactiveForeground": "#93A1A1",
"tab.inactiveBackground": "#004052",
"tab.border": "#003847",
"tab.lastPinnedBorder": "#2AA19844",
// Workbench: Activity Bar
"activityBar.background": "#003847",
// "activityBarBadge.background": "",
// "activityBar.dropBackground": "",
// "activityBar.foreground": "",
// "activityBarBadge.foreground": "",

View file

@ -436,11 +436,11 @@
// "tab.activeBackground": "",
// "tab.activeForeground": "",
// "tab.inactiveForeground": "",
"tab.lastPinnedBorder": "#EEE8D5",
// Workbench: Activity Bar
"activityBar.background": "#DDD6C1",
"activityBar.foreground": "#584c27",
"activityBar.dropBackground": "#EEE8D5",
"activityBarBadge.background": "#B58900",
// "activityBarBadge.foreground": "",

View file

@ -28,6 +28,7 @@
"peekViewResult.background": "#001c40",
"tab.inactiveBackground": "#001c40",
"tab.modifiedBorder": "#FFEEAD",
"tab.lastPinnedBorder": "#007acc80",
"debugToolBar.background": "#001c40",
"titleBar.activeBackground": "#001126",
"statusBar.background": "#001126",

View file

@ -121,7 +121,6 @@ export const TAB_LAST_PINNED_BORDER = registerColor('tab.lastPinnedBorder', {
hc: contrastBorder
}, nls.localize('lastPinnedTabBorder', "Border to separate pinned tabs from other tabs. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."));
export const TAB_ACTIVE_BORDER = registerColor('tab.activeBorder', {
dark: null,
light: null,