-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode-theme.js
More file actions
125 lines (124 loc) · 2.04 KB
/
Copy pathcode-theme.js
File metadata and controls
125 lines (124 loc) · 2.04 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/** @type {import("prism-react-renderer").PrismTheme} */
const theme = {
plain: {
color: "#f8f8f2",
backgroundColor: "#002333",
},
styles: [
{
types: ["changed"],
style: {
color: "rgb(162, 191, 252)",
fontStyle: "italic",
},
},
{
types: ["deleted"],
style: {
color: "#f92672",
fontStyle: "italic",
},
},
{
types: ["inserted"],
style: {
color: "rgb(173, 219, 103)",
fontStyle: "italic",
},
},
{
types: ["comment"],
style: {
color: "#8292a2",
fontStyle: "italic",
},
},
{
types: ["string", "url"],
style: {
color: "#14CC92",
},
},
{
types: ["variable"],
style: {
color: "#f8f8f2",
},
},
{
types: ["number"],
style: {
color: "#ae81ff",
},
},
{
types: ["class-name"],
style: {
color: "#B986FF",
},
},
{
types: ["builtin", "char", "constant", "function"],
style: {
color: "#ffbc42",
},
},
{
types: ["punctuation"],
style: {
color: "#f8f8f2",
},
},
{
types: ["selector", "doctype"],
style: {
color: "#a6e22e",
fontStyle: "italic",
},
},
{
types: ["tag", "operator", "keyword"],
style: {
color: "#32B7FF",
},
},
{
types: ["boolean"],
style: {
color: "#ae81ff",
},
},
{
types: ["namespace"],
style: {
color: "rgb(178, 204, 214)",
opacity: 0.7,
},
},
{
types: ["tag", "property"],
style: {
color: "#32B7FF",
},
},
{
types: ["attr-name"],
style: {
color: "#a6e22e !important",
},
},
{
types: ["doctype"],
style: {
color: "#8292a2",
},
},
{
types: ["rule"],
style: {
color: "#e6db74",
},
},
],
};
module.exports = theme;