From abffd21a8f7477f1f1b0c98c971f1ac20544ef09 Mon Sep 17 00:00:00 2001 From: Rob L <81087205+flashrob01@users.noreply.github.com> Date: Fri, 27 May 2022 22:26:07 +0800 Subject: [PATCH] Change color of Status Bar - NEO connect Addresses issue# 124- Change color of Status Bar based on status of NEO connection --- .vscode/settings.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index cee26ad..f62577c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,5 +5,15 @@ // Auto format files on save using Prettier: "editor.formatOnSave": true, - "editor.defaultFormatter": "esbenp.prettier-vscode" + "editor.defaultFormatter": "esbenp.prettier-vscode", + + //Adding the following code allows us to change the colors on the status bar at the bottom of the VS Code border to whatever we like + "workbench.colorCustomizations": { + "statusBar.background": "#1A1A1A", + "statusBar.noFolderBackground": "#212121", + "statusBar.debuggingBackground": "#263238", + "statusBarItem.prominentForeground": "#55eb34", + + "statusBar.foreground": "#ce8416" + } }