From 53bad793ebca739051ba3975aa2628283d3e08ff Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sat, 14 Jun 2025 18:35:49 +0200 Subject: [PATCH] style(vscode): customize activity bar and theme colors - Add custom color settings for the activity bar to enhance UI - Introduce a Peacock color for consistent theme customization --- .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..a7bf767 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#eee5a7", + "activityBar.background": "#eee5a7", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#1fa090", + "activityBarBadge.foreground": "#e7e7e7" + }, + "peacock.color": "#e6d97c" +} \ No newline at end of file