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
|
import { colors } from '../../config.json';
export const smallText = {
fontFamily: 'Open Sans',
fontSize: '13px',
fontWeight: 600,
lineHeight: '20px',
color: colors.white80,
};
export const mediumText = {
fontFamily: 'Open Sans',
fontSize: '18px',
lineHeight: '24px',
};
export const buttonText = {
...mediumText,
fontFamily: 'DINPro',
fontWeight: 900,
color: colors.white,
};
export const bigText = {
fontFamily: 'DINPro',
fontSize: '30px',
fontWeight: 900,
lineHeight: '34px',
color: colors.white,
};
|