From 0160c691049a6c77e3d81e5e4046e10ec592eae3 Mon Sep 17 00:00:00 2001 From: Eric Ma Date: Wed, 6 Sep 2023 06:29:31 -0400 Subject: [PATCH] feat(vscode): add custom color settings - Removed .vscode/settings.json from .gitignore - Added new color customizations to .vscode/settings.json [END COMMIT MESSAGE] --- .gitignore | 1 - .vscode/settings.json | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 08050fd..3c441f9 100644 --- a/.gitignore +++ b/.gitignore @@ -102,5 +102,4 @@ venv.bak/ # mypy .mypy_cache/ -.vscode/settings.json .virtual_documents diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a39c8e4 --- /dev/null +++ b/.vscode/settings.json @@ -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" +}