forked from wednesday-solutions/react-native-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fonts.js
68 lines (60 loc) · 847 Bytes
/
fonts.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
import { css } from 'styled-components';
// sizes
const regular = () => css`
font-size: 17px;
`;
const small = () => css`
font-size: 14px;
`;
const big = () => css`
font-size: 20px;
`;
const large = () => css`
font-size: 24px;
`;
// weights
const light = () => css`
font-weight: light;
`;
const bold = () => css`
font-weight: bold;
`;
const normal = () => css`
font-weight: normal;
`;
// styles
const heading = () => css`
${large()};
${bold()}
`;
const subheading = () => css`
${big()};
${bold()}
`;
const standard = () => css`
${regular()};
${normal()}
`;
const subText = () => css`
${small()};
${normal()}
`;
export default {
size: {
regular,
small,
big,
large
},
style: {
heading,
subheading,
standard,
subText
},
weights: {
light,
bold,
normal
}
};