-
Notifications
You must be signed in to change notification settings - Fork 2
/
theme.js
107 lines (105 loc) · 1.92 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
97
98
99
100
101
102
103
104
105
106
107
import { createTheme } from '@mui/material/styles';
export const theme = createTheme({
typography: {
fontFamily: 'Inter',
button: {
textTransform: 'none',
},
h1: {
fontSize: '60px',
lineHeight: '60px',
fontWeight: 700,
},
h2: {
fontSize: '32px',
lineHeight: '40px',
fontWeight: 700,
},
h3: {
fontSize: '32px',
lineHeight: '40px',
},
h4: {
fontSize: '22px',
lineHeight: '30px',
fontWeight: 600,
color: '#272D37',
marginTop: '10px',
},
h5: {
fontSize: '16px',
lineHeight: '20px',
fontWeight: 600,
color: '#272D37',
},
h6: {
fontSize: '21px',
lineHeight: '60px',
fontWeight: 600,
color: '#000',
},
body1: {
fontSize: '16px',
lineHeight: '19px',
fontWeight: 400,
color: '#5F6D7E',
},
body2: {
fontSize: '16px',
lineHeight: '24px',
fontWeight: 400,
color: '#5F6D7E',
marginTop: '10px',
},
body3: {
fontSize: '12px',
lineHeight: '16px',
fontWeight: 400,
color: '#5F6D7E',
marginTop: '16px',
},
},
palette: {
primary: {
light: '#757ce8',
main: '#437EF7',
dark: '#002884',
contrastText: '#fff',
},
secondary: {
light: '#ff7961',
main: '#f44336',
dark: '#ba000d',
contrastText: '#000',
},
},
components: {
MuiButton: {
styleOverrides: {
root: {
fontWeight: 600,
borderColor: '#DAE0E6',
height: '46px',
padding: '0 36px',
},
},
},
MuiButtonOutlined: {
styleOverrides: {
root: {
border: '1px solid #DAE0E6',
color: '#272D37!important',
},
},
},
},
breakpoints: {
values: {
xs: 0,
sm: 600,
md: 900,
lg: 1200,
xl: 1536,
},
},
});