forked from sindresorhus/hyper-snazzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
41 lines (41 loc) · 1022 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
'use strict';
const foregroundColor = '#eff0eb';
const backgroundColor = 'rgba(40, 42, 54, .6)';
const black = '#282a36';
const red = '#ff5c57';
const green = '#5af78e';
const yellow = '#f3f99d';
const blue = '#57c7ff';
const magenta = '#ff6ac1';
const cyan = '#9aedfe';
exports.onWindow = browserWindow => browserWindow.setVibrancy('ultra-dark');
exports.decorateConfig = config => Object.assign({}, config, {
backgroundColor,
foregroundColor,
borderColor: '#222430',
cursorColor: '#97979b',
colors: {
black,
red,
green,
yellow,
blue,
magenta,
cyan,
white: '#f1f1f0',
lightBlack: '#686868',
lightRed: red,
lightGreen: green,
lightYellow: yellow,
lightBlue: blue,
lightMagenta: magenta,
lightCyan: cyan,
lightWhite: foregroundColor
},
css: `
${config.css}
.tab_active:before {
border-color: rgba(255, 106, 193, 0.25);
}
`
});