forked from crowdbotics-apps/haileyshealthyhango-48467
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
75 lines (70 loc) · 1.5 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
import { StyleSheet } from "react-native";
export const Color = {
malibu: "#46E1FD",
pink: "#e97d77",
white: "#fff",
whiteOff: "#F4F5F9",
steel: "#CCCCCC",
black: "#060606",
facebook: "#3b5998",
red: "red",
gray: "#6A6A6A"
};
export const styles = StyleSheet.create({
container: {
flex: 1,
paddingHorizontal: 20,
marginVertical: 20,
width: "100%"
},
content: {
alignItems: "center",
flex: 1,
justifyContent: "center",
textAlign: "center"
},
header: {
fontSize: 25,
color: Color.gray
},
profileIcon: {
flex: 1,
alignItems: "center",
justifyContent: "center",
marginBottom: 5
},
label: { color: Color.gray, fontSize: 12, fontWeight: "bold" },
text: { color: Color.black, fontSize: 16, marginTop: 3, marginBottom: 12 }
});
export const inputStyles = {
input: {
borderColor: Color.steel,
borderWidth: 0.9,
borderRadius: 6,
fontSize: 15,
marginVertical: 10,
paddingHorizontal: 15,
paddingVertical: 7,
color: Color.black
},
date: { width: "100%", paddingVertical: 0 },
label: { color: Color.gray, fontSize: 12, fontWeight: "bold" },
error: { color: Color.red, fontSize: 9 }
};
export const buttonStyles = {
view: {
backgroundColor: Color.pink,
borderRadius: 10,
justifyContent: "center",
marginHorizontal: 10,
marginBottom: 10,
height: 44
},
text: {
fontSize: 16,
textAlign: "center",
color: Color.white,
marginHorizontal: 40,
marginVertical: 10
}
};