-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.js
52 lines (50 loc) · 1.22 KB
/
theme.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
const COLOR = {
KINOVAR: '#cc0803',
KINOVAR_MUTED: '#cc080370',
WIDE: '#379260',
WIDE_MUTED: '#37926070',
BUKVITSA: '#3760a2',
BUKVITSA_MUTED: '#3760a270',
PAGEBREAK_NUMBER: '#00ffa2',
PAGEBREAK_LABEL: '#ffffa2',
PAGEBREAK_DELIM: '#00ffa270',
};
const theme = [
{
scope: 'markup.kinovar',
settings: { foreground: COLOR.KINOVAR }
},
{
scope: 'markup.kinovar.delim',
settings: { foreground: COLOR.KINOVAR_MUTED }
},
{
scope: 'markup.wide',
settings: { foreground: COLOR.WIDE }
},
{
scope: 'markup.wide.delim',
settings: { foreground: COLOR.WIDE_MUTED }
},
{
scope: 'markup.bukvitsa',
settings: { foreground: COLOR.BUKVITSA }
},
{
scope: 'markup.bukvitsa.delim',
settings: { foreground: COLOR.BUKVITSA_MUTED }
},
{
scope: 'markup.pagebreak.number',
settings: { foreground: COLOR.PAGEBREAK_NUMBER }
},
{
scope: 'markup.pagebreak.label',
settings: { foreground: COLOR.PAGEBREAK_LABEL }
},
{
scope: 'markup.pagebreak.delim',
settings: { foreground: COLOR.PAGEBREAK_DELIM }
},
];
exports.theme = theme ;