From 6125d9f7a001e6a1f7be8700e3033b7932199517 Mon Sep 17 00:00:00 2001
From: John Wage <john.m.wage@gmail.com>
Date: Wed, 18 Sep 2024 12:13:08 -0400
Subject: [PATCH] Update background color of Left Menu components (both
 DragDropPanel and MUIDragDropPanel) to make consistent with background color
 of entire Left Menu

---
 app/src/components/left/DragDropPanel.tsx    | 2 +-
 app/src/components/left/MUIDragDropPanel.tsx | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/src/components/left/DragDropPanel.tsx b/app/src/components/left/DragDropPanel.tsx
index b6c5cb9f..7f034ef6 100644
--- a/app/src/components/left/DragDropPanel.tsx
+++ b/app/src/components/left/DragDropPanel.tsx
@@ -19,7 +19,7 @@ const useStyles = makeStyles({
     color: '#ffffff' // Set the text color to white
   },
   accordionSummary: {
-    backgroundColor: '#101012', // Set the background color of the summary to gray
+    backgroundColor: '#1E2024', // Set the background color of the summary to gray
     color: '#ffffff' // Set the text color of the summary to white
   }
 });
diff --git a/app/src/components/left/MUIDragDropPanel.tsx b/app/src/components/left/MUIDragDropPanel.tsx
index 710439d0..dca8cb0b 100644
--- a/app/src/components/left/MUIDragDropPanel.tsx
+++ b/app/src/components/left/MUIDragDropPanel.tsx
@@ -19,7 +19,7 @@ const useStyles = makeStyles({
     color: '#ffffff' // Set the text color to white
   },
   accordionSummary: {
-    backgroundColor: '#101012', // Set the background color of the summary to gray
+    backgroundColor: '#1E2024', // Set the background color of the summary to gray
     color: '#ffffff' // Set the text color of the summary to white
   }
 });