chore: update VSCode settings for window color customization

- Added custom color settings for the activity bar, status bar, and title bar in the .vscode/settings.json file.
- Introduced peacock color configuration to improve visual consistency.

This change aims to enhance the development environment's appearance and usability. No further changes are pending for this task.
This commit is contained in:
Zack Spear
2025-07-07 12:51:15 -07:00
parent 34e50e51fe
commit 04b287d698
+21 -1
View File
@@ -83,5 +83,25 @@
"search.exclude": {
"emhttp/webGui/**/*": true
},
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar"
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#ffa862",
"activityBar.background": "#ffa862",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#008039",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#ffa862",
"statusBar.background": "#ff8c2f",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#fb7000",
"statusBarItem.remoteBackground": "#ff8c2f",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#ff8c2f",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#ff8c2f99",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.color": "#ff8c2f"
}