-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
37 lines (36 loc) · 776 Bytes
/
index.js
File metadata and controls
37 lines (36 loc) · 776 Bytes
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
const foregroundColor = '#eff0f6'
const backgroundColor = '#191b2a'
const red = '#ff476e'
const green = '#39ffba'
const yellow = '#ffee7a'
const blue = '#94bfff'
const magenta = '#f1b3f1'
const cyan = '#01f7f7'
exports.decorateConfig = config =>
Object.assign({}, config, {
backgroundColor,
foregroundColor,
borderColor: '#191b2a',
cursorColor: '#eff0f6',
colors: {
black: backgroundColor,
red,
green,
yellow,
blue,
magenta,
cyan,
white: '#eff0f6',
lightBlack: '#2a2d46',
lightRed: red,
lightGreen: green,
lightYellow: yellow,
lightBlue: blue,
lightMagenta: magenta,
lightCyan: cyan,
lightWhite: foregroundColor
},
css: `
${config.css}
`
})