-
Notifications
You must be signed in to change notification settings - Fork 0
/
Assets.ts
70 lines (69 loc) · 1.66 KB
/
Assets.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
// @ts-ignore
import JavaBinLogo from '@/assets/images/javaBin-logo.png';
// @ts-ignore
import Doughnut from '@/assets/images/javaZone2022Doughnut.webp';
import TriangleRight from '@/assets/icons/triangle-right.svg';
import TriangleDown from '@/assets/icons/triangle-down.svg';
import Logo from '@/assets/images/javaZone-logo.svg';
import { StyleSheet } from 'react-native';
export const Assets = {
links: {
javaBinMail: 'mailto:javazone@java.no',
javaZoneMail: 'mailto:javazone@java.no',
programMail: 'mailto:program@java.no',
partnerMail: 'mailto:partner@java.no',
volunteerMail: 'mailto:student@java.no',
javaBoardMail: 'mailto:styret@java.no',
},
images: {
Logo,
JavaBinLogo,
Doughnut,
},
icons: {
TriangleRight,
TriangleDown,
},
colors: {
transparent: 'transparent',
brand: {
primary: '#181C14',
secondary: '#3C3D37',
tertiary: '#697565',
neutral: '#676758',
cream: '#ECDFCC',
dutchWhite: '#EFDFBB',
beige: '#D6BD98',
charcoal: '#2D2D2D',
},
logo: {
brightOrange: '#ED6F24',
brightRed: '#CC2817',
mediumRed: '#BA1818',
mediumOrange: '#EA5B14',
brightYellow: '#FCC139',
mediumYellow: '#F9B235',
},
gradient: {
dark: '#120707',
medium: '#232526',
light: '#414345',
brown: '#1e1616',
},
},
styles: StyleSheet.create({
safeArea: {
flex: 1,
position: 'relative',
marginHorizontal: 0,
zIndex: 1,
},
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
flexDirection: 'column',
color: '#ECDFCC', // cream
},
}),
};