-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.ts
64 lines (53 loc) · 1.1 KB
/
theme.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
import { TextStyle } from 'react-native';
export const backgroundColor = '#242a2e';
export const textBold: TextStyle = {
fontFamily: 'ProductSans-Bold',
fontWeight: 'bold',
};
export const textStyle: TextStyle = {
color: '#fff',
fontFamily: 'ProductSans-Regular',
fontSize: 16,
lineHeight: 26,
textAlign: 'center',
};
export const textStyleBold: TextStyle = {
...textStyle,
...textBold,
};
export const textStyleH1: TextStyle = {
...textStyle,
...textBold,
fontSize: 40,
lineHeight: 55,
};
export const textStyleH2: TextStyle = {
...textStyleH1,
fontSize: 22,
lineHeight: 32,
};
export const textStyleGO: TextStyle = {
...textStyle,
...textBold,
color: '#DFE9ED',
fontSize: 26,
lineHeight: 32,
};
export const textStyleSecondary: TextStyle = {
...textStyle,
color: '#98A3AB',
fontSize: 14,
lineHeight: 18,
maxWidth: '80%',
};
export const signInButtonBackgroundColor = '#2E353A';
export const signInButtonBackgroundAccent = '#343D43';
export default {
backgroundColor,
textStyle,
textStyleBold,
textStyleH1,
textStyleGO,
signInButtonBackgroundColor,
signInButtonBackgroundAccent,
};