Files
004_comission/vinniesniper-54816/task1/project/frontend/config/theme.js
louiscklaw 2f92062c07 update,
2025-01-31 22:32:41 +08:00

38 lines
673 B
JavaScript

import { createTheme } from "@mui/material/styles";
import { red } from "@mui/material/colors";
// Create a theme instance.
const theme = createTheme({
palette: {
primary: {
main: "#556cd6",
},
secondary: {
main: "#19857b",
},
error: {
main: red.A400,
},
},
components: {
MuiTypography: {
defaultProps: {
variantMapping: {
h1: "h2",
h2: "h2",
h3: "h2",
h4: "h2",
h5: "h2",
h6: "h2",
subtitle1: "h2",
subtitle2: "h2",
body1: "span",
body2: "span",
},
},
},
},
});
export default theme;