-
Notifications
You must be signed in to change notification settings - Fork 0
/
prism-custom-theme.js
65 lines (64 loc) · 1.12 KB
/
prism-custom-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
53
54
55
56
57
58
59
60
61
62
63
64
65
const theme = {
plain: {
color: "#FCFCFC",
backgroundColor: "#252627",
},
styles: [
{
types: ["prolog", "constant", "builtin"],
style: {
color: "rgb(189, 147, 249)",
},
},
{
types: ["inserted", "function"],
style: {
color: "rgb(80, 250, 123)",
},
},
{
types: ["deleted"],
style: {
color: "rgb(255, 85, 85)",
},
},
{
types: ["changed"],
style: {
color: "rgb(255, 184, 108)",
},
},
{
types: ["punctuation", "symbol"],
style: {
color: "rgb(248, 248, 242)",
},
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "rgb(255, 121, 198)",
},
},
{
types: ["keyword", "variable"],
style: {
color: "rgb(189, 147, 249)",
fontStyle: "italic",
},
},
{
types: ["comment"],
style: {
color: "rgb(98, 114, 164)",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)",
},
},
],
};
module.exports = theme;