From 82a628e6fe56f03c3dd9792caa9b126643feedef Mon Sep 17 00:00:00 2001 From: Peter Rossa Date: Tue, 23 May 2023 19:44:33 +0200 Subject: [PATCH] Add settings file --- .vscode/settings.json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 385f27a..c851379 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,23 @@ { - "java.configuration.updateBuildConfiguration": "interactive" + "java.configuration.updateBuildConfiguration": "interactive", + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#6da6c4", + "activityBar.background": "#6da6c4", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#f6e8f1", + "activityBarBadge.foreground": "#15202b", + "commandCenter.border": "#e7e7e799", + "sash.hoverBorder": "#6da6c4", + "statusBar.background": "#4990b5", + "statusBar.foreground": "#e7e7e7", + "statusBarItem.hoverBackground": "#6da6c4", + "statusBarItem.remoteBackground": "#4990b5", + "statusBarItem.remoteForeground": "#e7e7e7", + "titleBar.activeBackground": "#4990b5", + "titleBar.activeForeground": "#e7e7e7", + "titleBar.inactiveBackground": "#4990b599", + "titleBar.inactiveForeground": "#e7e7e799" + }, + "peacock.color": "#4990b5" }