-
Notifications
You must be signed in to change notification settings - Fork 0
/
GlobalStyles.ts
42 lines (35 loc) · 884 Bytes
/
GlobalStyles.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
import { RFPercentage, RFValue } from "react-native-responsive-fontsize";
/* fonts */
export const FontFamily = {
Inter: 'Inter'
};
/* font sizes */
export const FontSize = {
rehular10pxRegular_size: RFValue(10),
regular12px: RFValue(12),
regular13px: RFValue(13),
regular14px: RFValue(14),
regular16px: RFValue(16),
regular18px: RFValue(18),
small9px: RFValue(9)
};
/* Colors */
export const color = (theme) => ({
backgroundColor: theme === 'light' ? "#fff": '#181818',
topbarColor: theme === 'light' ? '#FF5F04': '#FF5F04',
fontWhite: '#fff',
fontPrim: '#000000',
borderColorSecondary: '#DCDCDC',
fontPink: '#F16060',
bgPeach: '#FFDFDF',
fontSecondary: '#5A5A5A',
chapterHeading: '#0038FF',
gold: '#bf9b30',
checkBoxActiveColor: '#F46B45'
})
/* Paddings */
export const Padding = {
};
/* border radiuses */
export const Border = {
};