-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.ts
More file actions
64 lines (61 loc) · 1.52 KB
/
Copy paththeme.ts
File metadata and controls
64 lines (61 loc) · 1.52 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import { DefaultTheme, DarkTheme, ExtendedTheme } from '@react-navigation/native';
import {extendTheme} from "native-base";
export const theme = extendTheme({
fontConfig: {
Nunito: {
100: {
normal: 'Nunito_200ExtraLight',
italic: 'Nunito_200ExtraLight_Italic',
},
200: {
normal: 'Nunito_200ExtraLight',
italic: 'Nunito_200ExtraLight_Italic',
},
300: {
normal: 'Nunito_300Light',
italic: 'Nunito_300Light_Italic',
},
400: {
normal: 'Nunito_400Regular',
italic: 'Nunito_400Regular_Italic',
},
500: {
normal: 'Nunito_400Regular',
italic: 'Nunito_400Regular_Italic'
},
600: {
normal: 'Nunito_600SemiBold',
italic: 'Nunito_600SemiBold_Italic',
},
700: {
normal: 'Nunito_700Bold',
italic: 'Nunito_700Bold_Italic'
},
800: {
normal: 'Nunito_800ExtraBold',
italic: 'Nunito_800ExtraBold_Italic',
},
900: {
normal: 'Nunito_900Black',
italic: 'Nunito_900Black_Italic',
},
},
},
// Make sure values below matches any of the keys in `fontConfig`
fonts: {
heading: 'Nunito',
body: 'Nunito',
mono: 'Nunito',
},
})
export const reactNavigationTheme = {
dark: false,
colors: {
primary: 'rgb(255, 45, 85)',
background: 'rgb(255, 255, 255)',
card: 'rgb(255, 255, 255)',
text: 'rgb(28, 28, 30)',
border: 'rgb(199, 199, 204)',
notification: 'rgb(255, 69, 58)',
},
}