-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.ts
43 lines (39 loc) · 913 Bytes
/
style.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
import { StyleSheet } from 'react-native';
export const globalStyles = StyleSheet.create({
verticalFlex: {
display: 'flex',
flexDirection: 'column',
},
horizontalFlex: {
display: 'flex',
flexDirection: 'row',
},
centerFlex: {
justifyContent: 'center',
alignItems: 'center',
},
});
export const universalColors = {
permanentGeraniumLake: '#DF2B2B',
americanGreen: '#37B744',
lightSilver: '#D9D9D9',
metallicYellow: '#FED815',
primary: '#5964AB',
textOnPrimary: '#FFFFFF',
};
export const darkColors = {
background: '#2F2F2F',
text: '#FFFFFF',
textSecondary: '#FFFFFF',
textButtonSecondary: '#FFFFFF',
inputBackground: '#2d2d2d',
inputBorder: '#c7c4d6',
};
export const lightColors = {
background: '#FFFFFF',
text: '#010000',
textSecondary: '#73828A',
textButtonSecondary: '#7A7A7A',
inputBackground: '#f0f0f0',
inputBorder: '#c7c4d6',
};