-
Notifications
You must be signed in to change notification settings - Fork 0
/
GlobalStyle.js
73 lines (72 loc) · 1.3 KB
/
GlobalStyle.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
import { StyleSheet } from 'react-native';
export const globStyle = StyleSheet.create({
topContainer: {
marginTop: 28,
},
container: {
marginTop: 10,
},
charcoal: {
color: '#2E3951',
},
charcoalFill: {
backgroundColor: '#2E3951',
},
darkGunmetal: {
color: '#1C2331',
},
darkGunmetalFill: {
backgroundColor: '#1C2331',
},
uclaBlue: {
color: '#546893'
},
uclaBlueFill: {
backgroundColor: '#546893'
},
antiFlashWhite: {
color: '#F2F4F3',
},
antiFlashWhiteFill: {
backgroundColor: '#F2F4F3',
},
red: {
color: '#F62D13',
},
redFill: {
backgroundColor: '#F62D13',
},
deepLemon: {
color: '#FAD61F',
},
deepLemonFill: {
backgroundColor: '#FAD61F',
},
bulgarianRose: {
color: '#4A0B03',
},
bulgarianRoseFill: {
backgroundColor: '#4A0B03',
},
orangeCrayola: {
color: '#FF7733',
},
orangeCrayolaFill: {
backgroundColor: '#FF7733',
},
citrine: {
color: '#E1BC05',
},
citrineFill: {
backgroundColor: '#E1BC05',
},
malachite: {
color: '#00C851',
},
malachiteFill: {
backgroundColor: '#00C851',
},
whiteFill: {
backgroundColor: '#FFFFFF',
}
});