-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppStyles.js
70 lines (66 loc) · 1.19 KB
/
AppStyles.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
import { StyleSheet } from "react-native-web";
const wrappers = {
container: {
flex: 1,
gap: 10,
backgroundColor: "#09090b",
alignItems: "center",
color: "#fff",
padding: 50,
},
containerLarge: {
backgroundColor: "#09090b",
color: "#fff",
paddingVertical: 20,
paddingHorizontal: 15,
flex: 1,
gap: 15,
},
logoStyle: {
backgroundColor: "#27272a",
display: "flex",
justifyContent: "center",
alignItems: "center",
padding: 20,
borderRadius: 200,
marginBottom: 30,
marginTop: 60,
},
};
const typography = {
h1: {
fontSize: 30,
color: "#fff",
fontWeight: "600",
},
title: {
fontSize: 13,
color: "#71717a",
fontWeight: "600",
},
};
export const twColors = {
neutral: {
50: "#fafafa",
100: "#f5f5f5",
200: "#e5e5e5",
300: "#d4d4d4",
400: "#fafafa",
500: "#737373",
600: "#525252",
700: "#404040",
800: "#262626",
900: "#171717",
950: "##0a0a0a",
},
};
export const appStyles = StyleSheet.create({
...wrappers,
...typography,
textInputStyle: {
padding: 10,
backgroundColor: "#27272a",
color: "#fff",
borderRadius: 10,
},
});