-
Notifications
You must be signed in to change notification settings - Fork 163
/
theme.ts
56 lines (48 loc) · 1.22 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
import { Platform } from "react-native";
export const theme = {
colorWhite: "#FFFFFF",
colorBlack: "#051726",
colorDarkBlue: "#051726",
colorDarkestBlue: "#091725",
colorLightGreen: "#9BDFB1",
colorDarkGreen: "#1AC9A2",
colorGrey: "#adb5bd",
colorReactLightBlue: "#58C4DC",
colorReactDarkBlue: "#087EA4",
colorThemeLightGrey: "#FCFBFE",
colorThemeGrey: "#F5F4F3",
darkActiveContent: "rgba(255,255,255, 0.3)",
lightActiveContent: "rgba(0,0,0, 0.1)",
space4: 4,
space8: 8,
space12: 12,
space16: 16,
space24: 24,
fontSize16: 16,
fontSize18: 18,
fontSize24: 24,
fontSize32: 32,
fontFamilyLight: "FreightSansProLight-Regular",
fontFamilyLightItalic: "FreightSansProLight-Italic",
fontFamily: "FreightSansProBook-Regular",
fontFamilyItalic: "FreightSansProBook-Italic",
fontFamilyBold: "FreightSansProBold-Regular",
fontFamilyBoldItalic: "FreightSansProBold-Italic",
borderRadius6: 6,
borderRadius10: 10,
borderRadius20: 20,
dropShadow: {
...Platform.select({
ios: {
shadowColor: "#adb5bd",
shadowOffset: {
width: 0,
height: 0,
},
shadowOpacity: 0.4,
shadowRadius: 2,
},
default: {},
}),
},
};