-
Notifications
You must be signed in to change notification settings - Fork 0
/
sharedStyles.js
65 lines (62 loc) · 1.42 KB
/
sharedStyles.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
//let sharedStyles = {};
/* todo: check combination with spread
sharedStyles.cartoonShadow = {
shadowColor: '#000000',
shadowOffset: { width: 3, height: 4 },
shadowOpacity: 1,
shadowRadius: 0
};*/
let sharedStyles = {
activeScreen: {
paddingTop: 32,
textAlign: 'center'
},
cartoonShadow: {
shadowColor: '#000000',
shadowOffset: { width: 3, height: 4 },
shadowOpacity: 1,
shadowRadius: 0
},
helpText: {
color: '#FFFFFF',
fontSize: 24,
textAlign: 'center',
marginBottom: 32
},
extraText: {
color: '#FFFFFF',
fontSize: 24,
fontWeight: 'bold',
marginVertical: 128,
textAlign: 'center'
},
whiteButton: {
backgroundColor: '#efefef',
borderRadius: 30,
marginHorizontal: 32,
marginBottom: 0,
padding: 15,
shadowColor: '#000000',
shadowOffset: { width: 3, height: 4 },
shadowOpacity: 1,
shadowRadius: 0,
elevation: 5,
position: 'relative'
},
whiteButtonText: {
color: '#000000',
fontSize: 24,
fontWeight: '700',
textAlign: 'center'
},
whiteButtonHighlight: {
backgroundColor: '#fff',
borderRadius: 5,
height: 10,
position: 'absolute',
top: 4,
left: 12,
right: 12
}
}
export default sharedStyles;