-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
44 lines (42 loc) · 842 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
const bg = '#29283b';
const fg = '#b3b0d6';
const black = '#535178';
const red = '#ef6487';
const green = '#5eca89';
const yellow = '#fdd877';
const blue = '#65aef7';
const magenta = '#aa7ff0';
const cyan = '#43c1be';
const white = '#ffffff';
exports.decorateConfig = (config) => {
return Object.assign({}, config, {
cursorColor: fg,
foregroundColor: fg,
backgroundColor: bg,
borderColor: black,
colors: {
black,
red,
green,
yellow,
blue,
magenta,
cyan,
white,
lightBlack: black,
lightRed: red,
lightGreen: green,
lightYellow: yellow,
lightBlue: blue,
lightMagenta: magenta,
lightCyan: cyan,
lightWhite: white
},
css: `
${config.css || ''}
.hyper_main {
border-width: 0px;
}
`
});
}