autonomic-zone-gatsby/src/components/theme.js

34 lines
517 B
JavaScript
Raw Permalink Normal View History

2023-01-05 20:05:29 +00:00
import { createTheme } from "@mui/material";
const theme = createTheme({
palette: {
primary: {
main: "#DC3E9D",
},
secondary: {
main: "#0FB45D",
contrastText: "#FFF",
},
text: {
primary: "#DC3E9D",
2023-01-06 06:21:35 +00:00
},
2023-01-05 20:05:29 +00:00
},
typography: {
2023-01-06 06:21:35 +00:00
fontFamily: `"Karmilla", sans-serif`,
h1: {
fontSize: 14,
fontWeight: 700,
},
h2: {
fontSize: 12,
},
body1: {
fontSize: 21,
}
},
shape: {
borderRadius: 0,
},
2023-01-05 20:05:29 +00:00
})
export default theme