-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtypography.ts
99 lines (96 loc) · 1.54 KB
/
typography.ts
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
import { css } from 'styled-components';
export const font = {
base: '"Montserrat", sans-serif',
};
export const heading = {
h1: {
bold: css`
font-size: 4.2rem;
font-weight: 700;
`,
},
h2: {
semiBold: css`
font-size: 3.4rem;
font-weight: 600;
`,
light: css`
font-size: 3.4rem;
font-weight: 300;
`,
},
h3: {
regular: css`
font-size: 2.4rem;
font-weight: 400;
`,
medium: css`
font-size: 2.4rem;
font-weight: 500;
`,
bold: css`
font-size: 2.4rem;
font-weight: 700;
`,
},
h4: {
bold: css`
font-size: 2.2rem;
font-weight: 700;
`,
},
h5: {
bold: css`
font-size: 2rem;
font-weight: 700;
`,
regular: css`
font-size: 2rem;
font-weight: 400;
`,
},
};
export const paragraph = {
large: {
bold: css`
font-size: 1.6rem;
font-weight: 700;
`,
medium: css`
font-size: 1.6rem;
font-weight: 500;
`,
regular: css`
font-size: 1.6rem;
font-weight: 400;
`,
},
small: {
bold: css`
font-size: 1.4rem;
font-weight: 700;
`,
medium: css`
font-size: 1.4rem;
font-weight: 500;
`,
regular: css`
font-size: 1.4rem;
font-weight: 400;
`,
},
smaller: {
bold: css`
font-size: 1.2rem;
font-weight: 700;
`,
medium: css`
font-size: 1.2rem;
font-weight: 500;
`,
regular: css`
font-size: 1.2rem;
font-weight: 400;
`,
},
};