-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
58 lines (58 loc) · 1.11 KB
/
index.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
const colors = {
black: "#867f6e",
lightBlack: "#867f6e",
white: "#eaf4de",
lightWhite: "#eaf4de",
blue: "#227b4d",
lightBlue: "#227b4d",
cyan: "#e18f62",
lightCyan: "#e18f62",
green: "#669c50",
lightGreen: "#669c50",
magenta: "#a5abda",
lightMagenta: "#a5abda",
red: "#eb6f6f",
lightRed: "#eb6f6f",
yellow: "#f2d696",
lightYellow: "#f2d696"
};
exports.decorateConfig = config =>
Object.assign({}, config, {
padding: "12px 30px 30px 30px",
backgroundColor: "#241f17",
foregroundColor: "#eaf4de",
cursorColor: "#eaf4de",
selectionColor: "rgba(134, 129, 110, 0.3)",
borderColor: "#0000",
colors,
css: `
${config.css || ''}
.tab_tab {
background-color: #241F17;
color: #EAF4DE;
}
.tab_tab.tab_active {
background-color: #332C21;
color: #EAF4DE;
font-weight: bold;
}
.header {
color: #EAF4DE;
}
.header_appTitle {
color: #EAF4DE;
}
.header_shape {
color: #EAF4DE;
}
.tabs_title {
color: #EAF4DE;
}
.tab_icon {
color: #EAF4DE;
}
.notifications_view * {
color: #EAF4DE;
}
`
});