UNPKG

862 BJavaScriptView Raw
1/**
2 * @typedef {Object} Theme
3 * @property {string[]} reset
4 * @property {string} black
5 * @property {string} red
6 * @property {string} green
7 * @property {string} yellow
8 * @property {string} blue
9 * @property {string} magenta
10 * @property {string} cyan
11 * @property {string} white
12 * @property {string} lightgrey
13 * @property {string} darkgrey
14 * @property {string} grey
15 * @property {string} dimgrey
16 */
17
18/**
19 * @type {Theme} theme
20 * A collection of colors to be used by the overlay.
21 * Partially adopted from Tomorrow Night Bright.
22 */
23const theme = {
24 reset: ['transparent', 'transparent'],
25 black: '000000',
26 red: 'D34F56',
27 green: 'B9C954',
28 yellow: 'E6C452',
29 blue: '7CA7D8',
30 magenta: 'C299D6',
31 cyan: '73BFB1',
32 white: 'FFFFFF',
33 lightgrey: 'C7C7C7',
34 darkgrey: 'A9A9A9',
35 grey: '474747',
36 dimgrey: '343434',
37};
38
39module.exports = theme;