-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme-prism.js
49 lines (48 loc) · 1.02 KB
/
theme-prism.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
module.exports = {
plain: {
color: 'rgb(191, 199, 213)',
backgroundColor: 'rgb(41, 45, 62)'
},
styles: [
{
types: ['variable', 'constant'],
style: { color: 'rgb(189, 147, 249)' }
},
{
types: ['punctuation', 'symbol'],
style: { color: 'rgb(191, 199, 213)' }
},
{
types: ['string', 'char', 'tag', 'selector'],
style: { color: 'rgb(116, 168, 105)' }
},
{
types: ['keyword'],
style: { color: 'rgb(216, 128, 11)' }
},
{
types: ['comment'],
style: { color: 'rgb(98, 114, 164)' }
},
{
types: ['attr-name'],
style: { color: 'rgb(241, 250, 140)' }
},
{
types: ['prolog', 'builtin'],
style: { color: 'rgb(189, 147, 249)' }
},
{
types: ['inserted', 'function'],
style: { color: 'rgb(130, 170, 255)' }
},
{
types: ['deleted'],
style: { color: 'rgb(255, 85, 85)' }
},
{
types: ['changed'],
style: { color: 'rgb(255, 184, 108)' }
}
]
};