Skip to content

Commit 0160c69

Browse files
committed
feat(vscode): add custom color settings
- Removed .vscode/settings.json from .gitignore - Added new color customizations to .vscode/settings.json [END COMMIT MESSAGE]
1 parent 8d70d69 commit 0160c69

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,4 @@ venv.bak/
102102

103103
# mypy
104104
.mypy_cache/
105-
.vscode/settings.json
106105
.virtual_documents

.vscode/settings.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.activeBackground": "#9d9c8e",
4+
"activityBar.background": "#9d9c8e",
5+
"activityBar.foreground": "#15202b",
6+
"activityBar.inactiveForeground": "#15202b99",
7+
"activityBarBadge.background": "#b7e7e4",
8+
"activityBarBadge.foreground": "#15202b",
9+
"commandCenter.border": "#15202b99",
10+
"sash.hoverBorder": "#9d9c8e",
11+
"statusBar.background": "#858473",
12+
"statusBar.foreground": "#15202b",
13+
"statusBarItem.hoverBackground": "#6a695b",
14+
"statusBarItem.remoteBackground": "#858473",
15+
"statusBarItem.remoteForeground": "#15202b",
16+
"titleBar.activeBackground": "#858473",
17+
"titleBar.activeForeground": "#15202b",
18+
"titleBar.inactiveBackground": "#85847399",
19+
"titleBar.inactiveForeground": "#15202b99"
20+
},
21+
"peacock.remoteColor": "#858473"
22+
}

0 commit comments

Comments
 (0)