Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | "use client";
import { createTheme } from "@mui/material/styles";
export const theme = createTheme({
palette: {
primary: {
main: "#1976d2",
light: "#42a5f5",
dark: "#1565c0",
contrastText: "#fff",
},
secondary: {
main: "#9c27b0",
light: "#ba68c8",
dark: "#7b1fa2",
contrastText: "#fff",
},
background: {
default: "#fafafa",
paper: "#fff",
},
error: {
main: "#d32f2f",
},
warning: {
main: "#ed6c02",
},
info: {
main: "#0288d1",
},
success: {
main: "#2e7d32",
},
},
typography: {
fontFamily: [
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
].join(","),
h1: {
fontSize: "2.5rem",
fontWeight: 600,
},
h2: {
fontSize: "2rem",
fontWeight: 600,
},
h3: {
fontSize: "1.75rem",
fontWeight: 600,
},
h4: {
fontSize: "1.5rem",
fontWeight: 600,
},
h5: {
fontSize: "1.25rem",
fontWeight: 600,
},
h6: {
fontSize: "1rem",
fontWeight: 600,
},
},
shape: {
borderRadius: 8,
},
components: {
MuiButton: {
styleOverrides: {
root: {
textTransform: "none",
fontWeight: 500,
},
},
},
MuiCard: {
styleOverrides: {
root: {
boxShadow: "0 2px 8px rgba(0,0,0,0.1)",
},
},
},
},
});
|