From ee66a0ed2c5855559b0ccc2706b829d734fde83d Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sun, 11 May 2025 14:13:54 +0200 Subject: [PATCH] chore(vscode): customize activity bar and theme settings - Add custom color settings for the activity bar and badges - Include a peacock theme color for workspace customization --- .vscode/settings.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 0284138..89308d5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,5 +2,14 @@ "python.envFile": "${workspaceFolder}/.env", "python.analysis.extraPaths": [ "src" - ] + ], + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#a9e3ea", + "activityBar.background": "#a9e3ea", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#d965cd", + "activityBarBadge.foreground": "#15202b" + }, + "peacock.color": "#80d5e0" } \ No newline at end of file