From a3cf33e002e820d44df0ae2b67601a9434ebb2f1 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 10 Oct 2024 21:14:51 +0530 Subject: [PATCH] feat: black text bg white --- src/components/molecules/NavBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/molecules/NavBar.tsx b/src/components/molecules/NavBar.tsx index ee9627b3..2696b98c 100644 --- a/src/components/molecules/NavBar.tsx +++ b/src/components/molecules/NavBar.tsx @@ -133,13 +133,13 @@ export const NavBar: React.FC = ({ newRecording, recordingName, isR const NavBarWrapper = styled.div` grid-area: navbar; - background-color: #3f4853; + background-color: white; padding:5px; display: flex; justify-content: space-between; `; const ProjectName = styled.b` - color: white; + color: #3f4853; font-size: 1.3em; `;