generated from terra-money/docs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
light.theme.js
55 lines (54 loc) · 1.02 KB
/
light.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
const theme = {
plain: {
color: "#2043B5",
backgroundColor: "#FFFFFF"
},
styles: [{
types: ["comment", "prolog", "doctype", "cdata"],
style: {
color: "#2043B5",
fontStyle: "italic"
}
}, {
types: ["namespace"],
style: {
opacity: 0.7
}
}, {
types: ["string", "attr-value"],
style: {
color: "#e3116c"
}
}, {
types: ["punctuation", "operator"],
style: {
color: "#2043B5"
}
}, {
types: ["entity", "url", "symbol", "number", "boolean", "variable", "constant", "property", "regex", "inserted"],
style: {
color: "#36acaa"
}
}, {
types: ["atrule", "keyword", "attr-name", "selector"],
style: {
color: "#00a4db"
}
}, {
types: ["function", "deleted", "tag"],
style: {
color: "#d73a49"
}
}, {
types: ["function-variable"],
style: {
color: "#6f42c1"
}
}, {
types: ["tag", "selector", "keyword"],
style: {
color: "#00009f"
}
}]
};
module.exports = theme;