Skip to content

Commit

Permalink
feat(vscode): add custom color settings
Browse files Browse the repository at this point in the history
- Removed .vscode/settings.json from .gitignore
- Added new color customizations to .vscode/settings.json
[END COMMIT MESSAGE]
  • Loading branch information
ericmjl committed Sep 6, 2023
1 parent 8d70d69 commit 0160c69
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,4 @@ venv.bak/

# mypy
.mypy_cache/
.vscode/settings.json
.virtual_documents
22 changes: 22 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#9d9c8e",
"activityBar.background": "#9d9c8e",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#b7e7e4",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#9d9c8e",
"statusBar.background": "#858473",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#6a695b",
"statusBarItem.remoteBackground": "#858473",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#858473",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#85847399",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.remoteColor": "#858473"
}

0 comments on commit 0160c69

Please sign in to comment.