This repository was archived by the owner on Feb 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathDarkTheme.ts
82 lines (78 loc) · 2.08 KB
/
DarkTheme.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import Template, { ThemeTemplateInterface } from './ThemeTemplate';
export interface DarkInterface extends ThemeTemplateInterface {
colors: {
primary: string;
text: string;
input: {
default: string;
success: string;
error: string;
};
statusColors: {
green: string;
orange: string;
red: string;
};
background: string;
border: string;
occupancyStatusColors: {
Vacant: string;
Reserved: string;
Occupied: string;
};
PieChartColors: {
Red: string;
Green: string;
Yellow: string;
};
editControlPanelColor: string;
chairTableBackground: string;
chairOccupiedBackground: string;
chairTableEditBackground: string;
reachIndicatorColors: {
red: string;
yellow: string;
green: string;
};
bannerBackgroundColor: string;
};
}
export const DarkTheme: DarkInterface = {
...Template,
colors: {
primary: '#EE2434',
text: '#4a4a4a',
input: {
default: '#f5f5f5',
success: '#f5fff5',
error: '#fff5f5',
},
statusColors: {
green: '#28af00',
orange: '#f98300',
red: '#ee2434',
},
background: '#ffffff',
border: 'rgba(0,0,0,0.1)',
occupancyStatusColors: {
Vacant: '#28a745',
Reserved: '#ffc107',
Occupied: '#17a2b8',
},
editControlPanelColor: '#6c757d',
chairTableBackground: '#6c757d',
chairOccupiedBackground: '#EE2434',
chairTableEditBackground: '#C4C4C4',
bannerBackgroundColor : 'rgba(0,0,0,0.5)',
PieChartColors: {
Red: '#FF0000',
Green: '#008000',
Yellow: '#ffff00',
},
reachIndicatorColors: {
red: '#f50707',
yellow: '#d1b306',
green: '#09d106',
},
},
};