-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlobalStyles.tsx
More file actions
96 lines (92 loc) · 1.89 KB
/
GlobalStyles.tsx
File metadata and controls
96 lines (92 loc) · 1.89 KB
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
import React from "react";
import { StyleSheet, Dimensions } from "react-native";
const DEVICE_WIDTH = Dimensions.get("window").width;
const DEVICE_HEIGHT = Dimensions.get("window").height;
const globalStyles = StyleSheet.create({
titleText: {
fontFamily: "Futura",
fontWeight: "600",
fontSize: 30,
textAlign: "center",
alignSelf: "center",
},
headerText: {
fontFamily: "Futura",
fontWeight: "600",
fontSize: 16,
alignSelf: "center",
textAlign: "center",
paddingHorizontal: 10,
paddingVertical: 10,
},
headerTextLeft: {
fontFamily: "Futura",
fontWeight: "600",
fontSize: 16,
alignSelf: "flex-start",
textAlign: "center",
},
subHeaderTextLeft: {
fontFamily: "Futura",
fontWeight: "600",
fontSize: 14,
alignSelf: "flex-start",
textAlign: "center",
},
bodyText: {
fontFamily: "Futura",
fontWeight: "600",
fontSize: 12,
alignSelf: "flex-start",
},
linkText: {
fontFamily: "Futura",
fontWeight: "700",
fontSize: 12,
color: "#0000FF",
alignSelf: "center",
},
titleBarText: {
fontFamily: "Futura",
fontSize: 25,
},
tealText: {
//Chabot Teal
color: "#27beb6",
},
darkTealText: {
//Chabot Dark Teal
color: "#00a6b9",
},
darkGreyText: { color: "#1B2832" },
image: {
resizeMode: "contain",
},
mapView: {
borderWidth: 0,
flexShrink: 1,
height: DEVICE_HEIGHT,
width: DEVICE_WIDTH,
backgroundColor: "white",
},
demoSectionImage: {
width: DEVICE_WIDTH / 1.2,
height: "100%",
resizeMode: "contain",
},
mapBackgroundImage: {
position: "absolute",
justifyContent: "center",
width: "100%",
height: "100%",
resizeMode: "contain",
borderWidth: 1,
},
demoScrollView: {
flex: 1,
backgroundColor: "white",
padding: 10,
justifyContent: "center",
},
});
export { globalStyles };