From 1872fd336a239407b490b0d7c9981972f7b47427 Mon Sep 17 00:00:00 2001 From: Eric Ma Date: Sun, 15 Oct 2023 08:54:34 -0400 Subject: [PATCH] feat(vscode-settings): update color customizations This commit introduces new color customizations for the VSCode settings. The changes include updates to the activity bar, status bar, and title bar colors. The peacock color has also been updated. --- .vscode/settings.json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 480f545..cad2b70 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,23 @@ { - "peacock.remoteColor": "#215732" + "peacock.remoteColor": "#215732", + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#c1b2bc", + "activityBar.background": "#c1b2bc", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#5d7828", + "activityBarBadge.foreground": "#e7e7e7", + "commandCenter.border": "#15202b99", + "sash.hoverBorder": "#c1b2bc", + "statusBar.background": "#aa96a4", + "statusBar.foreground": "#15202b", + "statusBarItem.hoverBackground": "#937a8c", + "statusBarItem.remoteBackground": "#aa96a4", + "statusBarItem.remoteForeground": "#15202b", + "titleBar.activeBackground": "#aa96a4", + "titleBar.activeForeground": "#15202b", + "titleBar.inactiveBackground": "#aa96a499", + "titleBar.inactiveForeground": "#15202b99" + }, + "peacock.color": "#aa96a4" }