-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.js
52 lines (52 loc) · 1.23 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
exports.decorateConfig = (config) => {
return Object.assign({}, config, {
foregroundColor: '#ECEFF1',
backgroundColor: '#263238',
borderColor: '#222d32',
cursorColor: config.cursorColor || 'rgba(0, 150, 136, .5)',
colors: {
black: '#263238',
red: '#FF5252',
green: '#9CCC65',
yellow: '#fee94e',
blue: '#2b98f0',
magenta: '#b38bfc',
cyan: '#68b6f3',
white: '#ECEFF1',
lightBlack: '#617d8a',
lightRed: '#fc625d',
lightGreen: '#9CCC65',
lightYellow: '#fee94e',
lightBlue: '#2b98f0',
lightMagenta: '#b38bfc',
lightCyan: '#68b6f3',
lightWhite: '#ffffff'
},
css: `
${config.css || ''}
.hyper_main {
border: none !important;
}
.header_header {
background: #222d32 !important;
}
.tab_tab {
border: 0;
}
.tab_textActive {
border-bottom: 2px solid #009688;
}
.splitpane_divider {
background-color: rgba(170, 187, 195, 0.16) !important;
}
.term_term {
opacity: 0.5;
transition: opacity 0.15s ease-in-out;
will-change: opacity;
}
.term_active .term_term {
opacity: 1;
}
`
})
}