style: Updates VS Code editor color scheme

- Updates the VS Code settings to customize the color scheme for
  the activity bar and activity bar badge.
- Enhances the visual appearance and user experience of the editor.
This commit is contained in:
2025-07-16 11:04:58 +02:00
parent 175bf4882a
commit 1d7bc19965

11
.vscode/settings.json vendored
View File

@@ -2,5 +2,14 @@
"python.envFile": "${workspaceFolder}/.env",
"python.analysis.extraPaths": [
"src"
]
],
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#8dc4ff",
"activityBar.background": "#8dc4ff",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#ff007b",
"activityBarBadge.foreground": "#e7e7e7"
},
"peacock.color": "#5aaaff"
}