-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.js
93 lines (91 loc) · 3.06 KB
/
constants.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import {DefaultTheme} from 'react-native-paper';
export const lightTheme = {
...DefaultTheme,
colors: {
primary: 'rgb(154, 64, 87)',
onPrimary: 'rgb(255, 255, 255)',
primaryContainer: 'rgb(255, 217, 223)',
onPrimaryContainer: 'rgb(63, 0, 22)',
secondary: 'rgb(117, 86, 92)',
onSecondary: 'rgb(255, 255, 255)',
secondaryContainer: 'rgb(255, 217, 223)',
onSecondaryContainer: 'rgb(43, 21, 26)',
tertiary: 'rgb(122, 87, 50)',
onTertiary: 'rgb(255, 255, 255)',
tertiaryContainer: 'rgb(255, 220, 188)',
onTertiaryContainer: 'rgb(44, 23, 0)',
error: 'rgb(186, 26, 26)',
onError: 'rgb(255, 255, 255)',
errorContainer: 'rgb(255, 218, 214)',
onErrorContainer: 'rgb(65, 0, 2)',
background: 'rgb(255, 251, 255)',
onBackground: 'rgb(32, 26, 27)',
surface: 'rgb(255, 251, 255)',
onSurface: 'rgb(32, 26, 27)',
surfaceVariant: 'rgb(243, 221, 224)',
onSurfaceVariant: 'rgb(82, 67, 69)',
outline: 'rgb(132, 115, 117)',
outlineVariant: 'rgb(214, 194, 196)',
shadow: 'rgb(0, 0, 0)',
scrim: 'rgb(0, 0, 0)',
inverseSurface: 'rgb(54, 47, 48)',
inverseOnSurface: 'rgb(250, 238, 238)',
inversePrimary: 'rgb(255, 177, 192)',
elevation: {
level0: 'transparent',
level1: 'rgb(250, 242, 247)',
level2: 'rgb(247, 236, 242)',
level3: 'rgb(244, 230, 237)',
level4: 'rgb(243, 229, 235)',
level5: 'rgb(241, 225, 232)',
},
surfaceDisabled: 'rgba(32, 26, 27, 0.12)',
onSurfaceDisabled: 'rgba(32, 26, 27, 0.38)',
backdrop: 'rgba(58, 45, 47, 0.4)',
},
};
export const darkTheme = {
...DefaultTheme,
colors: {
primary: 'rgb(255, 177, 192)',
onPrimary: 'rgb(95, 17, 42)',
primaryContainer: 'rgb(124, 41, 64)',
onPrimaryContainer: 'rgb(255, 217, 223)',
secondary: 'rgb(228, 189, 195)',
onSecondary: 'rgb(67, 41, 46)',
secondaryContainer: 'rgb(92, 63, 68)',
onSecondaryContainer: 'rgb(255, 217, 223)',
tertiary: 'rgb(236, 190, 144)',
onTertiary: 'rgb(70, 42, 8)',
tertiaryContainer: 'rgb(95, 64, 29)',
onTertiaryContainer: 'rgb(255, 220, 188)',
error: 'rgb(255, 180, 171)',
onError: 'rgb(105, 0, 5)',
errorContainer: 'rgb(147, 0, 10)',
onErrorContainer: 'rgb(255, 180, 171)',
background: 'rgb(32, 26, 27)',
onBackground: 'rgb(236, 224, 224)',
surface: 'rgb(32, 26, 27)',
onSurface: 'rgb(236, 224, 224)',
surfaceVariant: 'rgb(82, 67, 69)',
onSurfaceVariant: 'rgb(214, 194, 196)',
outline: 'rgb(159, 140, 143)',
outlineVariant: 'rgb(82, 67, 69)',
shadow: 'rgb(0, 0, 0)',
scrim: 'rgb(0, 0, 0)',
inverseSurface: 'rgb(236, 224, 224)',
inverseOnSurface: 'rgb(54, 47, 48)',
inversePrimary: 'rgb(154, 64, 87)',
elevation: {
level0: 'transparent',
level1: 'rgb(43, 34, 35)',
level2: 'rgb(50, 38, 40)',
level3: 'rgb(57, 43, 45)',
level4: 'rgb(59, 44, 47)',
level5: 'rgb(63, 47, 50)',
},
surfaceDisabled: 'rgba(236, 224, 224, 0.12)',
onSurfaceDisabled: 'rgba(236, 224, 224, 0.38)',
backdrop: 'rgba(58, 45, 47, 0.4)',
},
};