From bcb22f983e869e99299c62b431269826f1ae8ad3 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sun, 11 May 2025 01:10:21 +0200 Subject: [PATCH] feat(vscode): customize activity bar and peacock colors - Adds color customizations for the VS Code activity bar to improve UI appearance and consistency. - Sets Peacock extension color for better workspace identification. --- .vscode/settings.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..769c9d5 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#6e95c4", + "activityBar.background": "#6e95c4", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#edd2de", + "activityBarBadge.foreground": "#15202b" + }, + "peacock.color": "#4a7bb5" +} \ No newline at end of file