-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.js
More file actions
56 lines (52 loc) · 1.3 KB
/
index.js
File metadata and controls
56 lines (52 loc) · 1.3 KB
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
54
55
56
'use strict'
/*==============================================================================
Purify colors for Hyper
Author: Kyoz
Repository: https://github.com/kyoz/purify/
License: The MIT License (MIT)
Copyright: Kyoz (banminkyoz@gmail.com)
==============================================================================*/
const foregroundColor = '#FAFAFA';
const backgroundColor = '#313440';
const selectionColor = '#252834';
const black = '#282C34';
const red = '#FF6059';
const green = '#5FFF87';
const yellow = '#FFFF87';
const blue = '#5FAFFF';
const magenta = '#AF87FF';
const cyan = '#5FAFFF';
const white = '#FAFAFA';
const lightBlack = '#686868';
exports.decorateConfig = config => Object.assign({}, config, {
backgroundColor,
foregroundColor,
borderColor: backgroundColor,
cursorColor: foregroundColor,
cursorAccentColor: backgroundColor,
selectionColor,
colors: {
black,
red,
green,
yellow,
blue,
magenta,
cyan,
white,
lightBlack,
lightRed: red,
lightGreen: green,
lightYellow: yellow,
lightBlue: blue,
lightMagenta: magenta,
lightCyan: cyan,
lightWhite: white
},
css: `
/* Hide title if there's just one tab */
.tabs_title {
display: none !important;
}
`
});