Files
webgui/.vscode/settings.json
Zack Spear 04b287d698 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.
2025-07-07 12:51:15 -07:00

108 lines
2.5 KiB
JSON

{
"files.associations": {
"*.page": "php"
},
"prettier.tabWidth": 4,
"editor.tabSize": 4,
"editor.indentSize": "tabSize",
"intelephense.stubs": [
"apache",
"bcmath",
"bz2",
"calendar",
"com_dotnet",
"Core",
"ctype",
"curl",
"date",
"dba",
"dom",
"enchant",
"exif",
"FFI",
"fileinfo",
"filter",
"fpm",
"ftp",
"gd",
"gettext",
"gmp",
"hash",
"iconv",
"imap",
"intl",
"json",
"ldap",
"libxml",
"mbstring",
"meta",
"mysqli",
"oci8",
"odbc",
"openssl",
"pcntl",
"pcre",
"PDO",
"pdo_ibm",
"pdo_mysql",
"pdo_pgsql",
"pdo_sqlite",
"pgsql",
"Phar",
"posix",
"pspell",
"random",
"readline",
"Reflection",
"session",
"shmop",
"SimpleXML",
"snmp",
"soap",
"sockets",
"sodium",
"SPL",
"sqlite3",
"standard",
"superglobals",
"sysvmsg",
"sysvsem",
"sysvshm",
"tidy",
"tokenizer",
"xml",
"xmlreader",
"xmlrpc",
"xmlwriter",
"xsl",
"Zend OPcache",
"zip",
"zlib",
"libvirt-php"
],
"search.exclude": {
"emhttp/webGui/**/*": true
},
"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"
}