Skip to content

Commit 9f6a191

Browse files
authored
Avoid white status bar items to ensure contrast
Fixes #4384
1 parent 273c95e commit 9f6a191

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/observers/OmnisharpStatusBarObserver.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import { EventType } from "../omnisharp/EventType";
1010
export enum StatusBarColors {
1111
Red = 'rgb(218,0,0)',
1212
Green = 'rgb(0,218,0)',
13-
Yellow = 'rgb(218,218,0)',
14-
White = 'rgb(256,256,256)'
13+
Yellow = 'rgb(218,218,0)'
1514
}
1615

1716
export class OmnisharpStatusBarObserver extends BaseStatusBarItemObserver {
@@ -34,7 +33,7 @@ export class OmnisharpStatusBarObserver extends BaseStatusBarItemObserver {
3433
this.ResetAndHideStatusBar();
3534
break;
3635
case EventType.OmnisharpServerOnStart:
37-
this.SetAndShowStatusBar('$(flame)', 'o.showOutput', StatusBarColors.White, 'OmniSharp server is running');
36+
this.SetAndShowStatusBar('$(flame)', 'o.showOutput', 'OmniSharp server is running');
3837
break;
3938
case EventType.DownloadStart:
4039
this.SetAndShowStatusBar("$(cloud-download) Downloading packages", '', '', `Downloading package '${(<DownloadStart>event).packageDescription}...' `);

0 commit comments

Comments
 (0)