-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.js
64 lines (58 loc) · 1.27 KB
/
theme.js
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 { StyleSheet } from "react-native"
export const colors = {
primary: "#FF0000",
red: "#F05F57",
darkRed: "#4B1313",
purple: "#360940",
buttonColor: "#FF0000",
inputBg: "#FFE9E9",
inputBgSearch:'#EFEFEF',
inputTextSearch:'#B9B9B9',
inputText: "#FF1212",
white: "#ffffff",
black: "#000",
gray: "#757575",
gray1: "#D9D9D9",
lightGray: "#E0E0E0"
}
export const buttonRadious = 17
export const inputRadious = 30
export const fonts = {
bold: "Inter-Bold",
regular: "Inter-Regular"
}
export const globalStyle = StyleSheet.create({
heading1: {
fontFamily: fonts.bold,
fontSize: 20,
color: colors.black
},
description: {
fontSize: 20,
color: colors.gray
},
heading4: {
fontFamily: fonts.bold,
fontSize: 35,
color: colors.black
},
text1: {
fontFamily: fonts.regular,
fontSize: 20,
color: colors.black
},
p: {
fontSize: 16,
fontFamily: fonts.regular,
color: colors.g
},
row: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between'
},
rowx: {
display:'flex',
flexDirection:'column',
}
})