-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.js
54 lines (51 loc) · 840 Bytes
/
Constants.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
import { Dimensions } from 'react-native';
export const Colors = {
Background: '#1A2028',
Foreground: '#2C3840',
Navbar: '#222B32',
Contrast: '#6495ED',
Light: '#D4F1F9',
Record: '#DA6D55',
Earth: '#9D847E',
BlueWhite: '#A6C9E2',
Confirm: '#33A133',
Cancel: '#D9364A',
};
export const Dim = {
width: Dimensions.get('window').width,
height: Dimensions.get('window').height,
};
export const Font = {
h1: {
size: 36,
family: 'OverPass-Regular',
},
h2: {
size: 32,
family: 'OverPass-Regular',
},
h3: {
size: 28,
family: 'OverPass-Regular',
},
h4: {
size: 24,
family: 'OverPass-Regular',
},
p1: {
size: 20,
family: 'OverPass-Regular',
},
p2: {
size: 18,
family: 'OverPass-Regular',
},
p3: {
size: 14,
family: 'OverPass-Regular',
},
p4: {
size: 12,
family: 'OverPass-Regular',
},
};