Skip to content

Commit

Permalink
feat(vscode-settings): update color customizations
Browse files Browse the repository at this point in the history
This commit introduces new color customizations for the VSCode settings.
The changes include updates to the activity bar, status bar, and title bar colors.
The peacock color has also been updated.
  • Loading branch information
ericmjl committed Oct 15, 2023
1 parent 323df10 commit 1872fd3
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .vscode/settings.json
@@ -1,3 +1,23 @@
{
"peacock.remoteColor": "#215732"
"peacock.remoteColor": "#215732",
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#c1b2bc",
"activityBar.background": "#c1b2bc",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#5d7828",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#c1b2bc",
"statusBar.background": "#aa96a4",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#937a8c",
"statusBarItem.remoteBackground": "#aa96a4",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#aa96a4",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#aa96a499",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.color": "#aa96a4"
}

0 comments on commit 1872fd3

Please sign in to comment.