Skip to content

Commit d88b806

Browse files
authored
Merge pull request #316 from primer/remote-status-bar
Differentiate remote status-bar item
2 parents 4545c56 + 50149a8 commit d88b806

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.changeset/healthy-nails-tan.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"github-vscode-theme": patch
3+
---
4+
5+
Differentiate remote status-bar item

src/theme.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,16 @@ function getTheme({ theme, name }) {
135135
"statusBar.foreground" : color.fg.muted,
136136
"statusBar.background" : color.canvas.default,
137137
"statusBar.border" : color.border.default,
138+
"statusBar.focusBorder" : alpha(color.accent.emphasis, 0.5),
138139
"statusBar.noFolderBackground" : color.canvas.default,
139-
"statusBar.debuggingBackground" : color.danger.emphasis,
140140
"statusBar.debuggingForeground" : color.fg.onEmphasis,
141-
"statusBarItem.prominentBackground": color.canvas.subtle,
142-
"statusBarItem.remoteForeground" : color.fg.muted,
143-
"statusBarItem.remoteBackground" : color.canvas.default,
141+
"statusBar.debuggingBackground" : color.danger.emphasis,
142+
"statusBarItem.prominentBackground": color.neutral.muted,
143+
"statusBarItem.remoteForeground" : color.fg.default,
144+
"statusBarItem.remoteBackground" : lightDark(color.scale.gray[1], color.scale.gray[6]),
145+
"statusBarItem.hoverBackground" : alpha(color.fg.default, 0.08),
146+
"statusBarItem.activeBackground" : alpha(color.fg.default, 0.12),
147+
"statusBarItem.focusBorder" : color.accent.emphasis,
144148

145149
"editorGroupHeader.tabsBackground": color.canvas.inset,
146150
"editorGroupHeader.tabsBorder" : color.border.default,

0 commit comments

Comments
 (0)