From a07d5d78cee1c63e240d682338cf640c6b1d133e Mon Sep 17 00:00:00 2001 From: bartool Date: Sun, 30 Nov 2025 15:50:30 +0100 Subject: [PATCH] feat: add workspace configuration files for backend and frontend --- backand/backend.code-workspace | 17 +++++++++++++++++ frontend/frontend.code-workspace | 15 +++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 backand/backend.code-workspace create mode 100644 frontend/frontend.code-workspace diff --git a/backand/backend.code-workspace b/backand/backend.code-workspace new file mode 100644 index 0000000..688af6b --- /dev/null +++ b/backand/backend.code-workspace @@ -0,0 +1,17 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "workbench.colorCustomizations": { + "titleBar.activeBackground": "#996210", + "titleBar.activeForeground": "#e7e7e7", + "titleBar.inactiveBackground": "#744c11", + "titleBar.inactiveForeground": "#e7e7e7" + }, + + + } +} \ No newline at end of file diff --git a/frontend/frontend.code-workspace b/frontend/frontend.code-workspace new file mode 100644 index 0000000..a969969 --- /dev/null +++ b/frontend/frontend.code-workspace @@ -0,0 +1,15 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "workbench.colorCustomizations": { + "titleBar.activeBackground": "#178017", + "titleBar.activeForeground": "#e7e7e7", + "titleBar.inactiveBackground": "#146114", + "titleBar.inactiveForeground": "#e7e7e7", + } + } +} \ No newline at end of file