forked from diogocezar/hyper-synthwave84
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
50 lines (46 loc) · 976 Bytes
/
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
"use strict";
const black = "#262335";
const magenta = "#ff7edb";
const cyan = "#36f9f6";
const pink = "#f825a4";
const gray = "#b6b1b1";
const white = "#f2ebe0";
const green = "#72f1b8";
const orange = "#ff8b39";
const red = "#fe4450";
exports.decorateConfig = config => {
return Object.assign({}, config, {
backgroundColor: black,
foregroundColor: white,
borderColor: black,
cursorColor: pink,
colors: {
black: black,
red: red,
green: green,
yellow: orange,
blue: cyan,
magenta,
cyan,
gray,
// light
lightBlack: pink,
lightRed: pink,
lightGreen: green,
lightYellow: orange,
lightBlue: cyan,
lightMagenta: magenta,
lightCyan: cyan,
lightWhite: white,
},
css: `
${config.css || ""}
.tabs_list .tab_tab.tab_active .tab_text {
background: ${black};
}
.tab_active:before {
border-color: rgb(68, 71, 90);
}
`
});
};