-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.js
More file actions
95 lines (85 loc) · 1.97 KB
/
Copy paththeme.js
File metadata and controls
95 lines (85 loc) · 1.97 KB
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
import { createTheme } from '@mui/material';
const theme = createTheme({
palette: {
primary: {
main: '#ffffff',
contrastText: '#000000',
},
divider: '#E6E7E8',
yellowButton: {
main: '#BE8C00',
contrastText: '#ffffff',
},
purpleButton: {
main: '#724FBC',
contrastText: '#ffffff',
},
orangeButton: {
main: '#E16F38',
contrastText: '#ffffff',
},
},
typography: {
fontFamily: ['Inter', 'sans-serif'].join(','),
textTransform: 'unset',
h1: {
fontFamily: ['Manrope', 'sans-serif'].join(','),
fontStyle: 'normal',
fontWeight: 800,
fontSize: '60px',
lineHeight: '73px',
color: '#000000',
},
h2: {
fontFamily: ['Manrope', 'sans-serif'].join(','),
fontStyle: 'normal',
fontWeight: 800,
fontSize: '50px',
lineHeight: '64px',
color: '#000000',
},
body1: {
fontFamily: ['Inter', 'sans-serif'].join(','),
fontStyle: 'normal',
fontWeight: 400,
fontSize: '18px',
lineHeight: '28px',
color: '#111827',
},
subtitle1: {
fontFamily: ['Inter', 'sans-serif'].join(','),
fontStyle: 'normal',
fontWeight: 700,
fontSize: '20px',
lineHeight: '27px',
color: '#000000',
},
subtitle2: {
fontFamily: ['Lato', 'sans-serif'].join(','),
fontStyle: 'normal',
fontWeight: 600,
fontSize: '13px',
lineHeight: '14px',
letterSpacing: '0.04em',
textTransform: 'uppercase',
color: '#000000',
},
price: {
fontFamily: ['Poppins', 'sans-serif'].join(','),
fontStyle: 'normal',
fontWeight: 600,
fontSize: '26px',
lineHeight: '39px',
color: '#53B98B',
},
session: {
fontFamily: ['Lato', 'sans-serif'].join(','),
fontStyle: 'normal',
fontWeight: 400,
fontSize: '16px',
lineHeight: '19px',
color: '#747579',
},
},
});
export default theme;