-
-
Notifications
You must be signed in to change notification settings - Fork 647
Expand file tree
/
Copy pathindex.ts
More file actions
25 lines (22 loc) · 696 Bytes
/
index.ts
File metadata and controls
25 lines (22 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { DarkTheme, DefaultTheme } from '@react-navigation/native';
import { DarkColors, LightColors } from '../../Colors';
export const ScreensLightTheme = {
...DefaultTheme,
colors: {
...DefaultTheme.colors,
primary: LightColors.primary as string,
background: LightColors.background as string,
card: LightColors.cardBackground as string,
border: LightColors.cardBorder as string,
},
};
export const ScreensDarkTheme = {
...DarkTheme,
colors: {
...DarkTheme.colors,
primary: DarkColors.primary as string,
background: DarkColors.background as string,
card: DarkColors.cardBackground as string,
border: DarkColors.cardBorder as string,
},
};