File size: 503 Bytes
f52d137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { createTheme } from "@mui/material";

// Create a custom theme that matches the original design
export const theme = createTheme({
  shape: {
    borderRadius: 0,
  },
  palette: {
    mode: "light",
    primary: {
      main: "#111827",
    },
    secondary: {
      main: "#f8fafc",
    },
    background: {
      default: "#ffffff",
      paper: "#f8fafc",
    },
  },
  typography: {
    fontFamily:
      "system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif",
  },
});