-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtypography.js
71 lines (69 loc) · 1.65 KB
/
typography.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
import { Platform } from 'react-native';
const fontFamily = Platform.select({ android: 'sans-serif', ios: 'Helvetica' });
const fontWeightRegular = 'normal';
const fontWeightBold = 'bold';
export default {
/**
* Use the Heading style for card titles.
*/
headingText: theme => ({
fontFamily,
color: theme.headingTextColor,
fontSize: 20,
fontStyle: 'normal',
fontWeight: fontWeightRegular,
}),
headingTextBold: theme => ({
fontFamily,
color: theme.headingTextColor,
fontSize: 20,
fontStyle: 'normal',
fontWeight: fontWeightBold,
}),
/**
* Use the Subheading style to denote new sections within cards.
*/
subheadingText: theme => ({
fontFamily,
color: theme.subHeadingTextColor,
fontSize: 16,
fontStyle: 'normal',
fontWeight: fontWeightRegular,
}),
subheadingTextBold: theme => ({
fontFamily,
color: theme.subHeadingTextColor,
fontSize: 16,
fontStyle: 'normal',
fontWeight: fontWeightBold,
}),
/**
* The Body text style is used widely throughout the UI.
* Any text that isn’t a title, heading, subheading, label
* would generally use the Body style.
*/
bodyText: theme => ({
fontFamily,
color: theme.bodyTextColor,
fontSize: 14,
fontStyle: 'normal',
fontWeight: fontWeightRegular,
}),
bodyTextBold: theme => ({
fontFamily,
color: theme.bodyTextColor,
fontSize: 14,
fontStyle: 'normal',
fontWeight: fontWeightBold,
}),
/**
* Text style meant to be used only for Button component
*/
buttonText: {
fontFamily,
fontSize: 16,
textAlign: 'center',
paddingTop: 2,
paddingBottom: 1,
},
};