-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
53 lines (45 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
exports.decorateConfig = config => {
return Object.assign({}, config, {
foregroundColor: "#ccced0",
backgroundColor: "#202535",
colors: {
black: "#253045",
red: "#ee5577",
green: "#55ee77",
yellow: "#ffdd88",
blue: "#5588ff",
magenta: "#ff77cc",
cyan: "#44eeee",
white: "#f5f5da",
lightBlack: "#405570",
lightRed: "#ee6655",
lightGreen: "#99ee77",
lightYellow: "#ffff77",
lightBlue: "#77bbff",
lightMagenta: "#aa88ff",
lightCyan: "#55ffbb",
lightWhite: "#ffffee",
},
cursorColor: "#ccced0",
cursorAccentColor: "#202535",
selectionColor: "rgba(119,187,255, 0.3)",
borderColor: "#253045",
css: `
${config.css || ''}
.tabs_title, .header_windowHeader {
color: #ccced0;
}
.tabs_list .tab_tab {
background: #253045;
color: #405570;
}
.tabs_list .tab_active {
background: #202535;
color: #ccced0;
}
.tabs_list .tab_hasActivity {
color: #ee5577;
}
`
})
}