From a1ad2caa044a29261f63c7068bcbf4380628a4d7 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Fri, 27 Jun 2025 21:32:56 +0200 Subject: [PATCH] feat(vscode): add custom activity bar color settings - Introduces custom color configurations for the activity bar and badges in Visual Studio Code. - Enhances the visual appearance and personalization. --- .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..dc2aae0 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#b66d9f", + "activityBar.background": "#b66d9f", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#b9ca95", + "activityBarBadge.foreground": "#15202b" + }, + "peacock.color": "#a05087" +} \ No newline at end of file