forked from diogocezar/hyper-synthwave84
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
53 lines (49 loc) · 970 Bytes
/
Copy pathindex.js
File metadata and controls
53 lines (49 loc) · 970 Bytes
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
"use strict";
const backgroundColor = "#261f32";
const magenta = "#f2ebe0";
const cyan = "#ff7f32";
const brightBlack = "#f825a4";
const gray = "#ada8a8";
const brightWhite = "#f2ebe0";
const foregroundColor = "#f2ebe0";
const green = "#66edad";
const yellow = "#ff7f32";
const black = "#201b29";
const blue = "#f825a4";
const red = "#f625a3";
exports.decorateConfig = config => {
return Object.assign({}, config, {
backgroundColor,
foregroundColor,
borderColor: black,
cursorColor: brightBlack,
colors: {
black,
red,
green,
yellow,
blue,
magenta,
cyan,
gray,
// bright
brightBlack,
red,
green,
yellow,
blue,
magenta,
cyan,
brightWhite
},
css: `
${config.css || ""}
.tabs_list .tab_tab.tab_active .tab_text {
background: ${backgroundColor};
}
.tab_active:before {
border-color: rgb(68, 71, 90);
}
`
});
};