changed header to match new theme

This commit is contained in:
Carter 2026-06-30 09:43:38 -06:00
parent 64fcc934ce
commit 3eb66e3622
3 changed files with 27 additions and 2 deletions

View file

@ -16,7 +16,7 @@ const useStyles = makeStyles((theme: Theme) => {
appBar: {
zIndex: theme.zIndex.drawer + 1,
backgroundImage: "none", // This prevents de-saturation of header in dark mode
backgroundColor: theme.palette.mode === "light" ? "#3b3b3b" : "#272727"
backgroundColor: theme.palette.header.main
},
toolbar: {
marginLeft: theme.spacing(0.5),
@ -128,4 +128,4 @@ export default function Header() {
{isMobile && <BottomNavigator setNavOpen={isOpen => {setNavOpen(isOpen)}} sideIsOpen={navOpen} />}
</>
)
}
}