pacem-less 0.51.2-atlantis → 0.51.2-byblos
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/pacem/ui/dark/markdown.less +59 -8
- package/package.json +1 -1
|
@@ -178,24 +178,49 @@
|
|
|
178
178
|
|
|
179
179
|
.code-keyword,
|
|
180
180
|
.@{PCSS}-keyword {
|
|
181
|
-
color: #00f;
|
|
182
181
|
font-weight: 700;
|
|
182
|
+
|
|
183
|
+
& when (@dark_theme = false) {
|
|
184
|
+
color: #00f;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
& when (@dark_theme = true) {
|
|
188
|
+
color: #69f;
|
|
189
|
+
}
|
|
183
190
|
}
|
|
184
191
|
|
|
185
192
|
.code-number,
|
|
186
193
|
.@{PCSS}-number {
|
|
187
|
-
|
|
194
|
+
& when (@dark_theme = false) {
|
|
195
|
+
color: #f00;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& when (@dark_theme = true) {
|
|
199
|
+
color: #f80;
|
|
200
|
+
}
|
|
188
201
|
}
|
|
189
202
|
|
|
190
203
|
.code-string,
|
|
191
204
|
.@{PCSS}-string-char,
|
|
192
205
|
.@{PCSS}-string {
|
|
193
|
-
|
|
206
|
+
& when (@dark_theme = false) {
|
|
207
|
+
color: #0088ff;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& when (@dark_theme = true) {
|
|
211
|
+
color: #66aaff;
|
|
212
|
+
}
|
|
194
213
|
}
|
|
195
214
|
|
|
196
215
|
.code-comment,
|
|
197
216
|
.@{PCSS}-comment {
|
|
198
|
-
|
|
217
|
+
& when (@dark_theme = false) {
|
|
218
|
+
color: #373;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
& when (@dark_theme = true) {
|
|
222
|
+
color: #6a6;
|
|
223
|
+
}
|
|
199
224
|
}
|
|
200
225
|
}
|
|
201
226
|
|
|
@@ -205,17 +230,36 @@
|
|
|
205
230
|
|
|
206
231
|
.code-tag,
|
|
207
232
|
.@{PCSS}-tag {
|
|
208
|
-
|
|
233
|
+
|
|
234
|
+
& when (@dark_theme = false) {
|
|
235
|
+
color: #00f;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
& when (@dark_theme = true) {
|
|
239
|
+
color: #69f;
|
|
240
|
+
}
|
|
209
241
|
}
|
|
210
242
|
|
|
211
243
|
.code-tagname,
|
|
212
244
|
.@{PCSS}-tag-name {
|
|
213
|
-
|
|
245
|
+
& when (@dark_theme = false) {
|
|
246
|
+
color: #853233;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
& when (@dark_theme = true) {
|
|
250
|
+
color: #c56263;
|
|
251
|
+
}
|
|
214
252
|
}
|
|
215
253
|
|
|
216
254
|
.code-attribute,
|
|
217
255
|
.@{PCSS}-attribute {
|
|
218
|
-
|
|
256
|
+
& when (@dark_theme = false) {
|
|
257
|
+
color: #f00;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
& when (@dark_theme = true) {
|
|
261
|
+
color: #fc5900;
|
|
262
|
+
}
|
|
219
263
|
}
|
|
220
264
|
|
|
221
265
|
.code-comment,
|
|
@@ -226,7 +270,14 @@
|
|
|
226
270
|
.code-string,
|
|
227
271
|
.@{PCSS}-string-char,
|
|
228
272
|
.@{PCSS}-string {
|
|
229
|
-
|
|
273
|
+
|
|
274
|
+
& when (@dark_theme = false) {
|
|
275
|
+
color: #00f;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
& when (@dark_theme = true) {
|
|
279
|
+
color: #69f;
|
|
280
|
+
}
|
|
230
281
|
}
|
|
231
282
|
}
|
|
232
283
|
}
|
package/package.json
CHANGED