-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.ts
More file actions
40 lines (37 loc) · 859 Bytes
/
Copy paththeme.ts
File metadata and controls
40 lines (37 loc) · 859 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { MD3DarkTheme, MD3LightTheme } from "react-native-paper";
export const COLORS = {
primary: "#07787aff", // Deep Green
secondary: "#81C784",
accent: "#FFA000",
background: "#F5F5F5",
surface: "#FFFFFF",
error: "#B00020",
text: "#212121",
textSecondary: "#757575",
border: "#E0E0E0",
success: "#4CAF50",
warning: "#FFC107",
info: "#2196F3",
};
export const theme = {
...MD3LightTheme,
colors: {
...MD3LightTheme.colors,
primary: COLORS.primary,
secondary: COLORS.secondary,
tertiary: COLORS.accent,
error: COLORS.error,
background: COLORS.background,
surface: COLORS.surface,
},
};
export const darkTheme = {
...MD3DarkTheme,
colors: {
...MD3DarkTheme.colors,
primary: COLORS.primary,
secondary: COLORS.secondary,
tertiary: COLORS.accent,
error: COLORS.error,
},
};