Skip to content

Commit 83ecd5b

Browse files
author
Miguel Solorio
authored
Update default color tokens for last pinned tab border (microsoft#108207)
1 parent 13ccfeb commit 83ecd5b

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

extensions/theme-abyss/themes/abyss-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@
390390
"tab.inactiveBackground": "#10192c",
391391
// "tab.activeForeground": "",
392392
// "tab.inactiveForeground": "",
393-
"tab.lastPinnedBorder": "#596F99",
393+
"tab.lastPinnedBorder": "#2b3c5d",
394394

395395
// Workbench: Activity Bar
396396
"activityBar.background": "#051336",

extensions/theme-defaults/themes/light_defaults.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"statusBarItem.remoteBackground": "#16825D",
2121
"sideBarSectionHeader.background": "#0000",
2222
"sideBarSectionHeader.border": "#61616130",
23-
"tab.lastPinnedBorder": "#81818130",
23+
"tab.lastPinnedBorder": "#61616130",
2424
"notebook.focusedCellBackground": "#c8ddf150",
2525
"notebook.cellBorderColor": "#dae3e9",
2626
"notebook.outputContainerBackgroundColor": "#c8ddf150"

extensions/theme-kimbie-dark/themes/kimbie-dark-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"editorGroupHeader.tabsBackground": "#131510",
2424
"editorLineNumber.activeForeground": "#adadad",
2525
"tab.inactiveBackground": "#131510",
26-
"tab.lastPinnedBorder": "#5e452b",
26+
"tab.lastPinnedBorder": "#51412c",
2727
"titleBar.activeBackground": "#423523",
2828
"statusBar.background": "#423523",
2929
"statusBar.debuggingBackground": "#423523",

extensions/theme-monokai/themes/monokai-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"tab.inactiveBackground": "#34352f",
3636
"tab.border": "#1e1f1c",
3737
"tab.inactiveForeground": "#ccccc7", // needs to be bright so it's readable when another editor group is focused
38-
"tab.lastPinnedBorder": "#75715E",
38+
"tab.lastPinnedBorder": "#414339",
3939
"widget.shadow": "#000000",
4040
"progressBar.background": "#75715E",
4141
"badge.background": "#75715E",

extensions/theme-quietlight/themes/quietlight-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@
472472
"peekViewResult.background": "#F2F8FC",
473473
"peekView.border": "#705697",
474474
"peekViewResult.matchHighlightBackground": "#93C6D6",
475-
"tab.lastPinnedBorder": "#C9D0D988",
475+
"tab.lastPinnedBorder": "#c9d0d9",
476476
"statusBar.background": "#705697",
477477
"statusBar.noFolderBackground": "#705697",
478478
"statusBar.debuggingBackground": "#705697",

extensions/theme-solarized-light/themes/solarized-light-color-theme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@
436436
// "tab.activeBackground": "",
437437
// "tab.activeForeground": "",
438438
// "tab.inactiveForeground": "",
439-
"tab.lastPinnedBorder": "#EEE8D5",
439+
"tab.lastPinnedBorder": "#FDF6E3",
440440

441441
// Workbench: Activity Bar
442442
"activityBar.background": "#DDD6C1",

src/vs/workbench/common/theme.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import * as nls from 'vs/nls';
7-
import { registerColor, editorBackground, contrastBorder, transparent, editorWidgetBackground, textLinkForeground, lighten, darken, focusBorder, activeContrastBorder, editorWidgetForeground, editorErrorForeground, editorWarningForeground, editorInfoForeground } from 'vs/platform/theme/common/colorRegistry';
7+
import { registerColor, editorBackground, contrastBorder, transparent, editorWidgetBackground, textLinkForeground, lighten, darken, focusBorder, activeContrastBorder, editorWidgetForeground, editorErrorForeground, editorWarningForeground, editorInfoForeground, treeIndentGuidesStroke } from 'vs/platform/theme/common/colorRegistry';
88
import { IColorTheme } from 'vs/platform/theme/common/themeService';
99
import { Color } from 'vs/base/common/color';
1010

@@ -116,8 +116,8 @@ export const TAB_BORDER = registerColor('tab.border', {
116116
}, 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."));
117117

118118
export const TAB_LAST_PINNED_BORDER = registerColor('tab.lastPinnedBorder', {
119-
dark: null,
120-
light: null,
119+
dark: treeIndentGuidesStroke,
120+
light: treeIndentGuidesStroke,
121121
hc: contrastBorder
122122
}, 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."));
123123

0 commit comments

Comments
 (0)