1 | export default {
|
---|
2 | "code[class*=language-]": {
|
---|
3 | "color": "#22da17",
|
---|
4 | "fontFamily": "monospace",
|
---|
5 | "textAlign": "left",
|
---|
6 | "whiteSpace": "pre",
|
---|
7 | "wordSpacing": "normal",
|
---|
8 | "wordBreak": "normal",
|
---|
9 | "wordWrap": "normal",
|
---|
10 | "MozTabSize": "4",
|
---|
11 | "OTabSize": "4",
|
---|
12 | "tabSize": "4",
|
---|
13 | "WebkitHyphens": "none",
|
---|
14 | "MozHyphens": "none",
|
---|
15 | "msHyphens": "none",
|
---|
16 | "hyphens": "none",
|
---|
17 | "lineHeight": "25px",
|
---|
18 | "fontSize": "18px",
|
---|
19 | "margin": "5px 0"
|
---|
20 | },
|
---|
21 | "pre[class*=language-]": {
|
---|
22 | "color": "#fff",
|
---|
23 | "fontFamily": "monospace",
|
---|
24 | "textAlign": "left",
|
---|
25 | "whiteSpace": "pre",
|
---|
26 | "wordSpacing": "normal",
|
---|
27 | "wordBreak": "normal",
|
---|
28 | "wordWrap": "normal",
|
---|
29 | "MozTabSize": "4",
|
---|
30 | "OTabSize": "4",
|
---|
31 | "tabSize": "4",
|
---|
32 | "WebkitHyphens": "none",
|
---|
33 | "MozHyphens": "none",
|
---|
34 | "msHyphens": "none",
|
---|
35 | "hyphens": "none",
|
---|
36 | "lineHeight": "25px",
|
---|
37 | "fontSize": "18px",
|
---|
38 | "margin": ".5em 0",
|
---|
39 | "background": "#0a143c",
|
---|
40 | "padding": "1em",
|
---|
41 | "overflow": "auto"
|
---|
42 | },
|
---|
43 | "pre[class*=language-] *": {
|
---|
44 | "fontFamily": "monospace"
|
---|
45 | },
|
---|
46 | ":not(pre)>code[class*=language-]": {
|
---|
47 | "color": "#fff",
|
---|
48 | "background": "#0a143c",
|
---|
49 | "padding": ".1em",
|
---|
50 | "borderRadius": ".3em",
|
---|
51 | "whiteSpace": "normal"
|
---|
52 | },
|
---|
53 | "code[class*=language-] ::-moz-selection": {
|
---|
54 | "textShadow": "none",
|
---|
55 | "background": "rgba(29,59,83,.99)"
|
---|
56 | },
|
---|
57 | "code[class*=language-]::-moz-selection": {
|
---|
58 | "textShadow": "none",
|
---|
59 | "background": "rgba(29,59,83,.99)"
|
---|
60 | },
|
---|
61 | "pre[class*=language-] ::-moz-selection": {
|
---|
62 | "textShadow": "none",
|
---|
63 | "background": "rgba(29,59,83,.99)"
|
---|
64 | },
|
---|
65 | "pre[class*=language-]::-moz-selection": {
|
---|
66 | "textShadow": "none",
|
---|
67 | "background": "rgba(29,59,83,.99)"
|
---|
68 | },
|
---|
69 | "code[class*=language-] ::selection": {
|
---|
70 | "textShadow": "none",
|
---|
71 | "background": "rgba(29,59,83,.99)"
|
---|
72 | },
|
---|
73 | "code[class*=language-]::selection": {
|
---|
74 | "textShadow": "none",
|
---|
75 | "background": "rgba(29,59,83,.99)"
|
---|
76 | },
|
---|
77 | "pre[class*=language-] ::selection": {
|
---|
78 | "textShadow": "none",
|
---|
79 | "background": "rgba(29,59,83,.99)"
|
---|
80 | },
|
---|
81 | "pre[class*=language-]::selection": {
|
---|
82 | "textShadow": "none",
|
---|
83 | "background": "rgba(29,59,83,.99)"
|
---|
84 | },
|
---|
85 | "cdata": {
|
---|
86 | "color": "#637777",
|
---|
87 | "fontStyle": "italic"
|
---|
88 | },
|
---|
89 | "comment": {
|
---|
90 | "color": "#637777",
|
---|
91 | "fontStyle": "italic"
|
---|
92 | },
|
---|
93 | "prolog": {
|
---|
94 | "color": "#637777",
|
---|
95 | "fontStyle": "italic"
|
---|
96 | },
|
---|
97 | "punctuation": {
|
---|
98 | "color": "#c792ea"
|
---|
99 | },
|
---|
100 | ".namespace": {
|
---|
101 | "color": "#b2ccd6"
|
---|
102 | },
|
---|
103 | "deleted": {
|
---|
104 | "color": "rgba(239,83,80,.56)",
|
---|
105 | "fontStyle": "italic"
|
---|
106 | },
|
---|
107 | "property": {
|
---|
108 | "color": "#80cbc4"
|
---|
109 | },
|
---|
110 | "symbol": {
|
---|
111 | "color": "#80cbc4"
|
---|
112 | },
|
---|
113 | "keyword": {
|
---|
114 | "color": "#7fdbca"
|
---|
115 | },
|
---|
116 | "operator": {
|
---|
117 | "color": "#7fdbca"
|
---|
118 | },
|
---|
119 | "tag": {
|
---|
120 | "color": "#7fdbca"
|
---|
121 | },
|
---|
122 | "boolean": {
|
---|
123 | "color": "#ff5874"
|
---|
124 | },
|
---|
125 | "number": {
|
---|
126 | "color": "#f78c6c"
|
---|
127 | },
|
---|
128 | "builtin": {
|
---|
129 | "color": "rgb(34 183 199)"
|
---|
130 | },
|
---|
131 | "char": {
|
---|
132 | "color": "rgb(34 183 199)"
|
---|
133 | },
|
---|
134 | "constant": {
|
---|
135 | "color": "rgb(34 183 199)"
|
---|
136 | },
|
---|
137 | "function": {
|
---|
138 | "color": "rgb(34 183 199)"
|
---|
139 | },
|
---|
140 | "doctype": {
|
---|
141 | "color": "#c792ea",
|
---|
142 | "fontStyle": "italic"
|
---|
143 | },
|
---|
144 | "selector": {
|
---|
145 | "color": "#c792ea",
|
---|
146 | "fontStyle": "italic"
|
---|
147 | },
|
---|
148 | "attr-name": {
|
---|
149 | "color": "#addb67",
|
---|
150 | "fontStyle": "italic"
|
---|
151 | },
|
---|
152 | "inserted": {
|
---|
153 | "color": "#addb67",
|
---|
154 | "fontStyle": "italic"
|
---|
155 | },
|
---|
156 | ".language-css .token.string": {
|
---|
157 | "color": "#addb67"
|
---|
158 | },
|
---|
159 | ".style .token.string": {
|
---|
160 | "color": "#addb67"
|
---|
161 | },
|
---|
162 | "entity": {
|
---|
163 | "color": "#addb67"
|
---|
164 | },
|
---|
165 | "string": {
|
---|
166 | "color": "#addb67"
|
---|
167 | },
|
---|
168 | "url": {
|
---|
169 | "color": "#addb67"
|
---|
170 | },
|
---|
171 | "atrule": {
|
---|
172 | "color": "#ffcb8b"
|
---|
173 | },
|
---|
174 | "attr-value": {
|
---|
175 | "color": "#ffcb8b"
|
---|
176 | },
|
---|
177 | "class-name": {
|
---|
178 | "color": "#ffcb8b"
|
---|
179 | },
|
---|
180 | "important": {
|
---|
181 | "color": "#d6deeb",
|
---|
182 | "fontWeight": "700"
|
---|
183 | },
|
---|
184 | "regex": {
|
---|
185 | "color": "#d6deeb"
|
---|
186 | },
|
---|
187 | "variable": {
|
---|
188 | "color": "#d6deeb"
|
---|
189 | },
|
---|
190 | "bold": {
|
---|
191 | "fontWeight": "700"
|
---|
192 | },
|
---|
193 | "italic": {
|
---|
194 | "fontStyle": "italic"
|
---|
195 | }
|
---|
196 | }; |
---|