-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
40 lines (40 loc) · 778 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
exports.decorateConfig = (config) => {
return Object.assign({}, config, {
backgroundColor: '#1B2B34',
borderColor: '#1B2B34',
cursorColor: 'rgba(0, 150, 136, .5)',
colors: [
'#1B2B34',
'#EC5f67',
'#4F5B66',
'#65737E',
'#A7ADBA',
'#C0C5CE',
'#CDD3DE',
'#D8DEE9',
'#17232d',
'#F99157',
'#FAC863',
'#99C794',
'#5FB3B3',
'#6699CC',
'#5FB3B3',
'#AB7967'
],
css: `
${config.css || ''}
.hyperterm_main {
border: none !important;
}
.header_header {
background: #17232d !important;
}
.tab_tab {
border: 0;
}
.tab_active::before {
border-bottom: 2px solid #5FB3B3;
}
`
})
}