internal: Use statusBarItem colors for status item in VSCode
This commit is contained in:
parent
5410ace1fe
commit
02c2377229
@ -86,13 +86,19 @@ export class Ctx {
|
|||||||
case "warning":
|
case "warning":
|
||||||
this.statusBar.tooltip += "\nClick to reload.";
|
this.statusBar.tooltip += "\nClick to reload.";
|
||||||
this.statusBar.command = "rust-analyzer.reloadWorkspace";
|
this.statusBar.command = "rust-analyzer.reloadWorkspace";
|
||||||
this.statusBar.color = new vscode.ThemeColor("notificationsWarningIcon.foreground");
|
this.statusBar.color = new vscode.ThemeColor("statusBarItem.warningForeground");
|
||||||
|
this.statusBar.backgroundColor = new vscode.ThemeColor(
|
||||||
|
"statusBarItem.warningBackground"
|
||||||
|
);
|
||||||
icon = "$(warning) ";
|
icon = "$(warning) ";
|
||||||
break;
|
break;
|
||||||
case "error":
|
case "error":
|
||||||
this.statusBar.tooltip += "\nClick to reload.";
|
this.statusBar.tooltip += "\nClick to reload.";
|
||||||
this.statusBar.command = "rust-analyzer.reloadWorkspace";
|
this.statusBar.command = "rust-analyzer.reloadWorkspace";
|
||||||
this.statusBar.color = new vscode.ThemeColor("notificationsErrorIcon.foreground");
|
this.statusBar.color = new vscode.ThemeColor("statusBarItem.errorForeground");
|
||||||
|
this.statusBar.backgroundColor = new vscode.ThemeColor(
|
||||||
|
"statusBarItem.errorBackground"
|
||||||
|
);
|
||||||
icon = "$(error) ";
|
icon = "$(error) ";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user