-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.ts
131 lines (123 loc) · 2.69 KB
/
styles.ts
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import { StyleSheet } from "react-native";
const Mainstyles = StyleSheet.create({
Layout:{
backgroundColor:"rgb(229 231 235)",
flex:1,
paddingVertical:20,
// paddingHorizontal:10
},
PrimaryButton:{
backgroundColor:"rgb(232 121 249)",
paddingHorizontal:50,
paddingVertical:20,
borderRadius:20
},
PrimaryButtonText:{
fontSize:28,
fontWeight:"500",
color:"rgb(31 41 55)"
},
input:{
padding:20,
borderWidth:1,
borderRadius:10,
fontSize:20
},
iconButton: {
backgroundColor: "rgb(232 121 249 )",
display: "flex",
flexDirection: "row",
alignItems: "center",
justifyContent: "center",
textAlign: "center",
paddingHorizontal: 20,
paddingVertical: 10,
gap: 10,
borderRadius: 10,
},
iconButtonAlt: {
backgroundColor: "white",
display: "flex",
flexDirection: "row",
alignItems: "center",
justifyContent: "center",
textAlign: "center",
paddingHorizontal: 20,
paddingVertical: 10,
gap: 10,
borderRadius: 10,
},
buttonText:{
color: "white",
fontSize: 20,
fontWeight: "bold",
},
AltbuttonText:{
color: "rgb(232 121 249 )",
fontSize: 20,
fontWeight: "bold",
},
primaryText:{
fontSize:20,
color:"rgb(31 41 55 )",
fontWeight:"600"
},
primaryTextCentered:{
fontSize:20,
color:"rgb(31 41 55 )",
fontWeight:"600",
textAlign:"center"
},
bigText:{
fontSize:40,
color:"rgb(31 41 55 )",
fontWeight:"800",
lineHeight:40
},
subText:{
fontSize:15,
color:"rgb(31 41 55 )",
fontWeight:"400"
}
})
export const utilityStyles = StyleSheet.create({
flex:{
display:"flex",
flexDirection:"row"
},
flexCol:{
display:"flex",
flexDirection:"column"
},
fcenter:{
display:"flex",
flexDirection:"row",
justifyContent:"center"
},
flexSpread:{
display:"flex",
flexDirection:"row",
justifyContent:"space-between",
alignItems:"center"
},
basicPadding:{
paddingHorizontal:20,
paddingVertical:20
},
xpadding:{
paddingHorizontal:10
},
topPadding:{
paddingVertical:10
},
tinyTopPadding:{
paddingVertical:5
},
mtPadding:{
paddingTop:18
},
LargePadding:{
paddingVertical:40
},
})
export default Mainstyles