未验证 提交 83ecd5b6 编写于 作者: M Miguel Solorio 提交者: GitHub

Update default color tokens for last pinned tab border (#108207)

上级 13ccfeb2
...@@ -390,7 +390,7 @@ ...@@ -390,7 +390,7 @@
"tab.inactiveBackground": "#10192c", "tab.inactiveBackground": "#10192c",
// "tab.activeForeground": "", // "tab.activeForeground": "",
// "tab.inactiveForeground": "", // "tab.inactiveForeground": "",
"tab.lastPinnedBorder": "#596F99", "tab.lastPinnedBorder": "#2b3c5d",
// Workbench: Activity Bar // Workbench: Activity Bar
"activityBar.background": "#051336", "activityBar.background": "#051336",
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
"statusBarItem.remoteBackground": "#16825D", "statusBarItem.remoteBackground": "#16825D",
"sideBarSectionHeader.background": "#0000", "sideBarSectionHeader.background": "#0000",
"sideBarSectionHeader.border": "#61616130", "sideBarSectionHeader.border": "#61616130",
"tab.lastPinnedBorder": "#81818130", "tab.lastPinnedBorder": "#61616130",
"notebook.focusedCellBackground": "#c8ddf150", "notebook.focusedCellBackground": "#c8ddf150",
"notebook.cellBorderColor": "#dae3e9", "notebook.cellBorderColor": "#dae3e9",
"notebook.outputContainerBackgroundColor": "#c8ddf150" "notebook.outputContainerBackgroundColor": "#c8ddf150"
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
"editorGroupHeader.tabsBackground": "#131510", "editorGroupHeader.tabsBackground": "#131510",
"editorLineNumber.activeForeground": "#adadad", "editorLineNumber.activeForeground": "#adadad",
"tab.inactiveBackground": "#131510", "tab.inactiveBackground": "#131510",
"tab.lastPinnedBorder": "#5e452b", "tab.lastPinnedBorder": "#51412c",
"titleBar.activeBackground": "#423523", "titleBar.activeBackground": "#423523",
"statusBar.background": "#423523", "statusBar.background": "#423523",
"statusBar.debuggingBackground": "#423523", "statusBar.debuggingBackground": "#423523",
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
"tab.inactiveBackground": "#34352f", "tab.inactiveBackground": "#34352f",
"tab.border": "#1e1f1c", "tab.border": "#1e1f1c",
"tab.inactiveForeground": "#ccccc7", // needs to be bright so it's readable when another editor group is focused "tab.inactiveForeground": "#ccccc7", // needs to be bright so it's readable when another editor group is focused
"tab.lastPinnedBorder": "#75715E", "tab.lastPinnedBorder": "#414339",
"widget.shadow": "#000000", "widget.shadow": "#000000",
"progressBar.background": "#75715E", "progressBar.background": "#75715E",
"badge.background": "#75715E", "badge.background": "#75715E",
......
...@@ -472,7 +472,7 @@ ...@@ -472,7 +472,7 @@
"peekViewResult.background": "#F2F8FC", "peekViewResult.background": "#F2F8FC",
"peekView.border": "#705697", "peekView.border": "#705697",
"peekViewResult.matchHighlightBackground": "#93C6D6", "peekViewResult.matchHighlightBackground": "#93C6D6",
"tab.lastPinnedBorder": "#C9D0D988", "tab.lastPinnedBorder": "#c9d0d9",
"statusBar.background": "#705697", "statusBar.background": "#705697",
"statusBar.noFolderBackground": "#705697", "statusBar.noFolderBackground": "#705697",
"statusBar.debuggingBackground": "#705697", "statusBar.debuggingBackground": "#705697",
......
...@@ -436,7 +436,7 @@ ...@@ -436,7 +436,7 @@
// "tab.activeBackground": "", // "tab.activeBackground": "",
// "tab.activeForeground": "", // "tab.activeForeground": "",
// "tab.inactiveForeground": "", // "tab.inactiveForeground": "",
"tab.lastPinnedBorder": "#EEE8D5", "tab.lastPinnedBorder": "#FDF6E3",
// Workbench: Activity Bar // Workbench: Activity Bar
"activityBar.background": "#DDD6C1", "activityBar.background": "#DDD6C1",
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/ *--------------------------------------------------------------------------------------------*/
import * as nls from 'vs/nls'; import * as nls from 'vs/nls';
import { registerColor, editorBackground, contrastBorder, transparent, editorWidgetBackground, textLinkForeground, lighten, darken, focusBorder, activeContrastBorder, editorWidgetForeground, editorErrorForeground, editorWarningForeground, editorInfoForeground } from 'vs/platform/theme/common/colorRegistry'; import { registerColor, editorBackground, contrastBorder, transparent, editorWidgetBackground, textLinkForeground, lighten, darken, focusBorder, activeContrastBorder, editorWidgetForeground, editorErrorForeground, editorWarningForeground, editorInfoForeground, treeIndentGuidesStroke } from 'vs/platform/theme/common/colorRegistry';
import { IColorTheme } from 'vs/platform/theme/common/themeService'; import { IColorTheme } from 'vs/platform/theme/common/themeService';
import { Color } from 'vs/base/common/color'; import { Color } from 'vs/base/common/color';
...@@ -116,8 +116,8 @@ export const TAB_BORDER = registerColor('tab.border', { ...@@ -116,8 +116,8 @@ export const TAB_BORDER = registerColor('tab.border', {
}, nls.localize('tabBorder', "Border to separate tabs from each other. 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.")); }, nls.localize('tabBorder', "Border to separate tabs from each other. 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_LAST_PINNED_BORDER = registerColor('tab.lastPinnedBorder', { export const TAB_LAST_PINNED_BORDER = registerColor('tab.lastPinnedBorder', {
dark: null, dark: treeIndentGuidesStroke,
light: null, light: treeIndentGuidesStroke,
hc: contrastBorder 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.")); }, 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."));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册