-
Notifications
You must be signed in to change notification settings - Fork 0
/
Styles.js
106 lines (100 loc) · 2.18 KB
/
Styles.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
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
100
101
102
103
104
105
106
import { StyleSheet } from "react-native";
export const colors = {
barracudaGreenLight: '#9AE14B',
barracudaGreenMedium: '#85B83A',
barracudaGreenDark: '#5F8B12',
barracudaBlack: '#1B252F',
barracudaDarkGrey: '#31444E'
}
const Styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center'
},
row: {
flexDirection: 'row'
},
textInput: {
width: 300,
margin: 3,
paddingTop: 10,
paddingBottom: 5,
paddingLeft: 5,
paddingRight: 5,
color: '#333',
borderBottomWidth: 2,
borderBottomColor: '#555',
letterSpacing: -1,
fontWeight: '600',
fontSize: 16,
},
buttonCircle: {
margin: 3,
position: 'absolute',
bottom: 20,
right: 20,
width: 60,
height: 60,
backgroundColor: '#fff',
borderRadius: 30,
justifyContent: 'center',
alignItems: 'center'
},
buttonOval: {
margin: 3,
width: 147,
padding: 10,
paddingLeft: 15,
paddingRight: 15,
borderRadius: 3,
},
buttonSave: {
backgroundColor: colors.barracudaGreenMedium
},
buttonCancel: {
backgroundColor: colors.barracudaDarkGrey
},
buttonSelect: {
width: 147,
// margin: 3,
// paddingTop: 10,
// paddingBottom: 5,
// paddingLeft: 5,
// paddingRight: 5,
// color: '#333',
// borderBottomWidth: 2,
// borderBottomColor: '#555',
// letterSpacing: -1,
// fontWeight: '600',
// fontSize: 16,
},
buttonSelectText: {
letterSpacing: -1,
fontWeight: '600',
fontSize: 16,
},
coreShadow: {
shadowColor: "#000",
shadowOffset: {
width: 0,
height: 3,
},
shadowOpacity: 0.13,
shadowRadius: 4.65,
elevation: 6,
},
h1: {
fontWeight: '600',
fontSize: 18
},
h2: {
//fontWeight: '600',
fontSize: 16
},
h3: {
},
p: {
}
})
export default Styles