Added a theme and theme provider

This commit is contained in:
Alex Holliday
2024-05-06 12:10:16 -07:00
parent 9ec2d0c1a0
commit b833318ce3

18
Client/src/Utils/Theme.js Normal file
View File

@@ -0,0 +1,18 @@
import { createTheme } from "@mui/material";
// Colors for MUI theme
const secondaryMain = "#475467";
const tertiaryMain = "#475467";
const theme = createTheme({
palette: {
secondary: {
main: secondaryMain,
},
tertiary: {
main: tertiaryMain,
},
},
});
export default theme;