-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcolors.dark.ts
58 lines (55 loc) · 1.5 KB
/
colors.dark.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// MATERIAL PALETTE COLOR
import colorsLight from './colors';
export default {
...colorsLight,
text: '#ffffff',
primary: '#ffbb0c',
onPrimary: '#412d00',
primaryContainer: '#5d4200',
onPrimaryContainer: '#ffdea6',
primaryFixed: '#ffdea6',
onPrimaryFixed: '#271900',
primaryFixedDim: '#ffbb0c',
onPrimaryFixedVariant: '#5d4200',
secondary: '#d9c4a0',
onSecondary: '#3c2e15',
secondaryContainer: '#53452a',
onSecondaryContainer: '#f6e0bb',
secondaryFixed: '#f6e0bb',
onSecondaryFixed: '#251a04',
secondaryFixedDim: '#d9c4a0',
onSecondaryFixedVariant: '#53452a',
tertiary: '#b2cfa7',
onTertiary: '#1f361a',
tertiaryContainer: '#354d2f',
onTertiaryContainer: '#ceebc2',
tertiaryFixed: '#ceebc2',
onTertiaryFixed: '#0a2007',
tertiaryFixedDim: '#b2cfa7',
onTertiaryFixedVariant: '#354d2f',
error: '#ffb4ab',
errorContainer: '#93000a',
onError: '#690005',
onErrorContainer: '#ffdad6',
background: '#1e1b16',
onBackground: '#e9e1d9',
outline: '#9a8f80',
inverseOnSurface: '#1e1b16',
inverseSurface: '#e9e1d9',
inversePrimary: '#7b5800',
shadow: '#000000',
surfaceTint: '#ffbb0c',
outlineVariant: '#4e4639',
scrim: '#000000',
surface: '#16130e',
onSurface: '#cdc5bd',
surfaceVariant: '#4e4639',
onSurfaceVariant: '#d1c5b4',
surfaceContainerHighest: '#38342e',
surfaceContainerHigh: '#2d2924',
surfaceContainer: '#231f1a',
surfaceContainerLow: '#1e1b16',
surfaceContainerLowest: '#110e09',
surfaceDim: '#16130e',
surfaceBright: '#3d3933',
};