lighten background color, footer background color and border

This commit is contained in:
Monkey 2024-08-08 23:44:49 -04:00
parent a4c15a4d3f
commit bff6749a91
2 changed files with 5 additions and 2 deletions

View File

@ -28,7 +28,10 @@ const useStyles = makeStyles((theme) => ({
flexDirection: 'row', flexDirection: 'row',
flex: 1, flex: 1,
justifyContent: 'space-between', justifyContent: 'space-between',
backgroundColor: grey[900], backgroundColor: theme.palette.background.default,
borderTop: 1,
borderTopColor: "rgba(255, 255, 255, 0.12)",
borderTopStyle: "solid",
color: grey[400] color: grey[400]
}, },
left: { left: {

View File

@ -64,7 +64,7 @@ export const createTheme = (theme) =>
main: "#0000F4", main: "#0000F4",
}, },
background: { background: {
default: "#0F0F0F", default: "#18181A",
secondary: "#18181A", secondary: "#18181A",
paper: "#18181A", paper: "#18181A",
}, },