-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleconfig.js
117 lines (111 loc) · 2.18 KB
/
styleconfig.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
107
108
109
110
111
112
113
114
115
116
117
const CustomStyles = {
buttonStyles: {
backgroundColor: "#e4b523",
padding: 15,
fontWeight: "bold",
textAlign: "center",
color: "white",
width: 250
},
textInput: {
marginBottom: 10,
height: 40,
borderColor: "gray",
borderWidth: 1,
width: 250,
padding: 10,
backgroundColor: "white"
},
setupOption: {
backgroundColor: "#e4b523",
padding: 15,
borderRadius: 15,
fontWeight: "bold",
textAlign: "center",
color: "white",
width: 250,
marginTop: 25
},
networkOption: {
backgroundColor: "#e4b523",
padding: 15,
fontWeight: "bold",
textAlign: "center",
color: "white",
width: 300,
marginTop: 15,
justifyContent: "center",
alignItems: "center",
shadowColor: "#D3D3D3",
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.8,
shadowRadius: 2
},
networkOptionText: {
color: "white",
fontWeight: "bold"
},
screenContainer: {
flex: 1,
flexDirection: "column",
justifyContent: "flex-start",
alignItems: "stretch",
backgroundColor: "#F0F0F0"
},
bigHeaderContainer: {
justifyContent: "center",
height: 150,
padding: 10,
backgroundColor: "white",
borderBottomColor: "#A9A9A9",
borderBottomWidth: 1
},
bigHeader: {
fontSize: 24,
fontWeight: "500",
textTransform: "uppercase",
color: "#303030"
},
subHeader: {
marginTop: 5,
fontSize: 14,
color: "#303030"
},
listHeader: {
fontSize: 18,
fontWeight: "500",
textTransform: "uppercase",
color: "#303030",
marginLeft: 10,
marginTop: 20,
marginBottom: 20
},
deviceOperation: {
backgroundColor: "white",
padding: 10,
marginBottom: 10,
shadowColor: "#D3D3D3",
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.8,
shadowRadius: 2
},
operationHeader: {
marginBottom: 10
},
operationBody: {
flexDirection: "row"
},
operationButton: {
backgroundColor: "#D3D3D3",
width: 80,
height: 35,
textAlign: "center",
paddingTop: 8,
marginLeft: 10
},
operationResponse: {
marginLeft: 10,
paddingTop: 8
}
};
export default CustomStyles;