From 29eba3f85732addaaf88419c6b83fc7559dd90d0 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sat, 4 May 2019 01:20:34 -0700 Subject: [PATCH] Add remote status bar --- src/vscodeThemeGenerator.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vscodeThemeGenerator.ts b/src/vscodeThemeGenerator.ts index 2f7d96a..92a173f 100644 --- a/src/vscodeThemeGenerator.ts +++ b/src/vscodeThemeGenerator.ts @@ -272,6 +272,8 @@ export class VscodeThemeGenerator implements IThemeGenerator { theme.colors['statusBarItem.hoverBackground'] = addAlpha('#FFFFFF', 0.1); // statusBarItem.prominentBackground: Status bar prominent items background color. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window. // statusBarItem.prominentHoverBackground: Status bar prominent items background color when hovering. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window. + theme.colors['statusBarItem.remoteBackground'] = colorSet.base.color1; + theme.colors['statusBarItem.remoteForeground'] = contrast(colorSet.base.color1); // Title Bar Colors (macOS) // titleBar.activeBackground: Title bar background when the window is active. Note that this color is currently only supported on macOS.