-
Notifications
You must be signed in to change notification settings - Fork 4
/
theme.js
96 lines (94 loc) · 1.65 KB
/
theme.js
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
96
import { createTheme } from "@material-ui/core/styles";
const mainBlack = "#212121";
const mainWhite = "#fafafa";
const blue = "#757ce8";
// Create a theme instance.
const theme = createTheme({
palette: {
common: {
black: mainBlack,
white: mainWhite,
blue: blue,
},
primary: {
main: mainBlack,
},
secondary: {
main: mainWhite,
},
info: {
main: blue,
},
},
typography: {
h1: {
fontFamily: "Archivo",
fontStyle: "normal",
fontSize: "18px",
lineHeight: "22px",
fontWeight: 500,
},
h2: {
fontFamily: "Archivo",
fontStyle: "normal",
fontSize: "18px",
lineHeight: "20px",
fontWeight: 800,
},
h3: {
fontFamily: "Archivo",
fontStyle: "normal",
fontSize: "83px",
lineHeight: "90px",
fontWeight: 800
},
a: {
color: mainBlack,
},
},
overrides: {
MuiButtonGroup: {
root: {
cursor: "pointer"
},
grouped: {
borderRadius: "0",
minWidth: "138px"
}
},
MuiButton: {
outlinedSecondary: {
cursor: "pointer",
}
},
MuiPaper: {
root: {
backgroundColor: "none"
}
},
MuiAppBar: {
colorPrimary: {
background: "transparent",
backgroundColor: "none"
}
},
MuiFormLabel: {
root: {
color: "#E9D758"
}
},
MuiOutlinedInput: {
root: {
borderRadius: "0"
}
},
MuiList: {
padding: {
paddingTop: "4px",
padding: "4px",
paddingBottom: "0px"
}
}
},
});
export default theme;