forked from dfinity/portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codeblock-theme.js
68 lines (68 loc) · 1.17 KB
/
codeblock-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
66
67
68
module.exports = {
plain: {
color: "#F8F8F2",
backgroundColor: "#181818"
},
styles: [
{
types: ["title"],
style: {
color: "#29ABE2" //"#BA4ADB",
}
},
{
types: ["prolog", "constant", "builtin"],
style: {
color: "#29ABE2" //"#FF79C6",
}
},
{
types: ["inserted", "function", "namespace"],
style: {
color: "#26D76D" //"#50FA7B",
}
},
{
types: ["deleted"],
style: {
color: "#F68E5F" // "#FF5555",
}
},
{
types: ["changed"],
style: {
color: "#F68E5F" // "#FFB86C",
}
},
{
types: ["punctuation", "symbol"],
style: {
color: "#F1EEF5" // "#F8F8F2",
}
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "#F68E5F" // "#FF79C6",
}
},
{
types: ["keyword", "variable"],
style: {
color: "#EB318A" // "#EB318A",
}
},
{
types: ["comment"],
style: {
color: "#707070" // "#6272A4",
}
},
{
types: ["attr-name"],
style: {
color: "#F8F8F2"
}
}
]
};