Capital/app/theme.ts

23 lines
431 B
TypeScript
Raw Permalink Normal View History

2024-02-24 10:29:29 +00:00
"use client";
2024-02-24 06:16:57 +00:00
import { createTheme } from "@mui/material/styles";
export const theme = createTheme({
palette: {
primary: {
2024-02-24 13:56:35 +00:00
main: "#49509e",
2024-02-24 06:16:57 +00:00
},
secondary: {
2024-02-24 13:56:35 +00:00
main: "#d43630",
},
2024-02-24 10:29:29 +00:00
},
typography: {
h1: { fontSize: "2.5rem" },
h2: { fontSize: "2rem" },
h3: { fontSize: "1.75rem" },
h4: { fontSize: "1.5rem" },
h5: { fontSize: "1.25rem" },
h6: { fontSize: "1.15rem" },
},
2024-02-24 06:16:57 +00:00
});