From abe60210d28d102a4c6f2b3476af436429919d79 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sun, 15 Jun 2025 16:30:11 +0200 Subject: [PATCH] style(vscode): customize activity bar and peacock colors - Add color customizations for the activity bar in VS Code - Set Peacock extension color for consistent UI theming --- .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