-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.tsx
123 lines (121 loc) · 2.13 KB
/
styles.tsx
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
import { StyleSheet } from 'react-native'
export const styles = StyleSheet.create({
sectionContainer: {
width: 350,
marginTop: 10,
marginBottom: 24,
paddingHorizontal: 24,
margin: 0,
padding: 0,
borderRadius: 10,
height: 80,
backgroundColor: '#463AA0',
},
soundCardContainer: {
width: 350,
marginTop: 10,
marginBottom: 24,
paddingHorizontal: 24,
margin: 0,
padding: 0,
borderRadius: 10,
height: 80,
},
sectionTitle: {
fontSize: 34,
margin: 0,
fontWeight: '600',
},
sectionDescription: {
fontSize: 18,
fontWeight: '400',
},
highlight: {
fontWeight: '700',
},
textButtonStyle: {
flex: 1,
justifyContent: 'center',
margin: 0,
},
container: {
flex: 1,
alignItems: 'center',
backgroundColor: '#060523',
paddingTop: 20,
maxHeight: '100%',
},
container_list: {
flex: 1,
// alignContent: 'center',
alignItems: 'center',
//justifyContent: 'center',
backgroundColor: '#060523',
paddingTop: 20,
},
topBarContainer: {
flex: 1,
backgroundColor: '#060523',
padding: 20,
},
description: {
color: '#F0EAD6',
fontSize: 14,
fontWeight: '300',
},
buttonTitle: {
fontSize: 14,
fontWeight: '400',
justifyContent: 'flex-end',
margin: 0,
padding: 2,
color: '#F0EAD6',
},
SoundMixer: {
//flex: 1,
height: 100,
//borderRadius: 8,
//marginBottom: 20,
color: 'black',
backgroundColor: '#463AA0',
},
MainNavContainer: {
// marginTop: 32,
marginBottom: 0,
paddingStart: 24,
color: '#F0EAD6',
},
subNavContainer: {
paddingStart: 24,
paddingRight: 1,
},
subNavTitle: {
fontSize: 14,
margin: 0,
fontWeight: '400',
color: '#F0EAD6',
},
mainNavTitle: {
fontSize: 34,
margin: 0,
fontWeight: '600',
color: '#F0EAD6',
},
white: {
color: '#F0EAD6',
},
background: {
color: '#393281',
},
})
export const colors = StyleSheet.create({
primary: {
color: '#463AA0',
},
secondary: {
color: '#060523',
},
highlight: {
color: '#F0EAD6',
},
})