File size: 1,468 Bytes
b462a9f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18267c9
b462a9f
 
 
 
 
 
 
 
 
 
18267c9
 
 
 
 
 
b462a9f
 
 
 
 
 
 
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
import { createTheme } from "@mui/material/styles";

export const theme = createTheme({
  palette: {
    mode: "dark",
  },
  typography: {
    fontFamily: '"Action Man", "Roboto", "Helvetica", "Arial", sans-serif',
    fontWeightRegular: 900,
    button: {
      fontFamily: '"Action Man", "Roboto", "Helvetica", "Arial", sans-serif',
      fontWeight: 900,
    },
    body1: {
      fontWeight: 900,
    },
    body2: {
      fontWeight: 900,
    },
    caption: {
      fontWeight: 900,
    },
    h1: {
      fontWeight: 900,
    },
    h2: {
      fontWeight: 900,
    },
    h3: {
      fontWeight: 900,
    },
    h4: {
      fontWeight: 900,
    },
    h5: {
      fontWeight: 900,
    },
    h6: {
      fontWeight: 900,
    },
  },
  components: {
    MuiChip: {
      styleOverrides: {
        root: ({ theme }) => ({
          borderRadius: "4px",
          backgroundColor: "transparent",
          border: "1px solid",
          fontWeight: 900,
          fontFamily:
            '"Action Man", "Roboto", "Helvetica", "Arial", sans-serif',
          "& .MuiChip-label": {
            padding: "2px 8px",
            lineHeight: "1.2",
          },
          ...(theme.palette.mode === "dark" && {
            backgroundColor: "transparent !important",
            color: "inherit !important",
            borderColor: "currentColor !important",
          }),
        }),
        sizeSmall: {
          height: "auto",
        },
      },
    },
  },
});