Skip to content

Commit 31205bd

Browse files
author
Benjamin Pasero
committed
use more transparency (for microsoft#25482)
1 parent 31a5fb2 commit 31205bd

3 files changed

Lines changed: 7 additions & 7 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
@@ -369,7 +369,7 @@
369369
// "activityBarForeground": "",
370370
"activityBarBadgeBackground": "#0063a5",
371371
// "activityBarBadgeForeground": "",
372-
"activityBarDragAndDropBackground": "#25375daa",
372+
// "activityBarDragAndDropBackground": "#25375daa",
373373

374374
// Workbench: Panel
375375
// "panelBackground": "",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@
404404

405405
// Workbench: Activity Bar
406406
"activityBarBackground": "#003847",
407-
"activityBarDragAndDropBackground": "#00212B",
407+
// "activityBarDragAndDropBackground": "#00212B",
408408
"activityBarBadgeBackground": "#047aa6",
409409

410410
// Workbench: Panel

src/vs/workbench/common/theme.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ export const PANEL_INACTIVE_TITLE_COLOR = registerColor('panelInactiveTitleForeg
121121
}, nls.localize('panelInactiveTitleForeground', "Title color for the inactive panel. Panels are shown below the editor area and contain views like output and integrated terminal."));
122122

123123
export const PANEL_ACTIVE_TITLE_BORDER = registerColor('panelActiveTitleBorder', {
124-
dark: '#404047',
125-
light: '#CCCEDA',
124+
dark: PANEL_BORDER_COLOR,
125+
light: PANEL_BORDER_COLOR,
126126
hc: contrastBorder
127127
}, nls.localize('panelActiveTitleBorder', "Border color for the active panel title. Panels are shown below the editor area and contain views like output and integrated terminal."));
128128

@@ -189,9 +189,9 @@ export const ACTIVITY_BAR_FOREGROUND = registerColor('activityBarForeground', {
189189
}, nls.localize('activityBarForeground', "Activity bar foreground color (e.g. used for the icons). The activity bar is showing on the far left or right and allows to switch between views of the side bar."));
190190

191191
export const ACTIVITY_BAR_DRAG_AND_DROP_BACKGROUND = registerColor('activityBarDragAndDropBackground', {
192-
dark: '#403F3F',
193-
light: '#403F3F',
194-
hc: '#403F3F'
192+
dark: Color.fromRGBA(new RGBA(255, 255, 255)).transparent(0.12),
193+
light: Color.fromRGBA(new RGBA(255, 255, 255)).transparent(0.12),
194+
hc: Color.fromRGBA(new RGBA(255, 255, 255)).transparent(0.12),
195195
}, nls.localize('activityBarDragAndDropBackground', "Drag and drop feedback color for the activity bar items. The activity bar is showing on the far left or right and allows to switch between views of the side bar."));
196196

197197
export const ACTIVITY_BAR_BADGE_BACKGROUND = registerColor('activityBarBadgeBackground', {

0 commit comments

Comments
 (0)