-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.js
More file actions
50 lines (46 loc) · 1.15 KB
/
Copy paththeme.js
File metadata and controls
50 lines (46 loc) · 1.15 KB
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
import {
Urbanist_100Thin,
Urbanist_200ExtraLight,
Urbanist_300Light,
Urbanist_400Regular,
Urbanist_500Medium,
Urbanist_600SemiBold,
Urbanist_700Bold,
Urbanist_800ExtraBold,
Urbanist_900Black,
Urbanist_500Medium_Italic
} from '@expo-google-fonts/urbanist';
export const colors = {
primary:"#8ccbc3",
secondry:"#1f242c",
white:"#fff",
font:"#37363a",
fontGray:"#717b8a",
black:"#000",
lightGreen:"#def5ef",
bgGreen:"#f1faf7"
}
export const allFonts = {
Urbanist_100Thin,
Urbanist_200ExtraLight,
Urbanist_300Light,
Urbanist_400Regular,
Urbanist_500Medium,
Urbanist_600SemiBold,
Urbanist_700Bold,
Urbanist_800ExtraBold,
Urbanist_900Black,
Urbanist_500Medium_Italic
}
export const FontVariants = {
weight100:"Urbanist_100Thin",
weight200:"Urbanist_200ExtraLight",
weight300:"Urbanist_300Light",
weight400:"Urbanist_400Regular",
weight500:"Urbanist_500Medium",
weight600:"Urbanist_600SemiBold",
weight700:"Urbanist_700Bold",
weight800:"Urbanist_800ExtraBold",
weight900:"Urbanist_900Black",
italic:"Urbanist_500Medium_Italic"
}