diff --git a/extensions/typescript/src/utils/salsaStatus.ts b/extensions/typescript/src/utils/salsaStatus.ts index b074d8ad094..03afed1416b 100644 --- a/extensions/typescript/src/utils/salsaStatus.ts +++ b/extensions/typescript/src/utils/salsaStatus.ts @@ -35,9 +35,9 @@ export function show(message: string, tooltip: string, error: boolean) { statusBarEntry = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right, Number.MIN_VALUE); statusBarEntry.text = message; statusBarEntry.tooltip = tooltip; - let color = 'yellow'; + let color = 'white'; if (error) { - color = 'red'; + color = 'orange'; } statusBarEntry.color = color; statusBarEntry.show();