matcha-theme 19.17.0 → 19.18.0
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/abstracts/_colors.scss +92 -0
- package/package.json +1 -1
package/abstracts/_colors.scss
CHANGED
|
@@ -208,6 +208,10 @@ $index: 0;
|
|
|
208
208
|
.fill-red{fill: map-get($red, $get-shade)}
|
|
209
209
|
.stroke-red{stroke: map-get($red, $get-shade)}
|
|
210
210
|
.color-red-alpha{color: rgba(map-get($red, $get-shade),0.2)!important}
|
|
211
|
+
.red-alpha{
|
|
212
|
+
background: rgba(map-get($red, $get-shade),0.2);
|
|
213
|
+
color: map-get($red-contrast, $get-shade);
|
|
214
|
+
}
|
|
211
215
|
.red{
|
|
212
216
|
background: map-get($red, $get-shade);
|
|
213
217
|
color: map-get($red-contrast, $get-shade);
|
|
@@ -223,6 +227,10 @@ $index: 0;
|
|
|
223
227
|
.fill-pink{fill: map-get($pink, $get-shade)}
|
|
224
228
|
.stroke-pink{stroke: map-get($pink, $get-shade)}
|
|
225
229
|
.color-pink-alpha{color: rgba(map-get($pink, $get-shade),0.2)!important}
|
|
230
|
+
.pink-alpha{
|
|
231
|
+
background: rgba(map-get($pink, $get-shade),0.2);
|
|
232
|
+
color: map-get($pink-contrast, $get-shade);
|
|
233
|
+
}
|
|
226
234
|
.pink{
|
|
227
235
|
background: map-get($pink, $get-shade);
|
|
228
236
|
color: map-get($pink-contrast, $get-shade);
|
|
@@ -238,6 +246,10 @@ $index: 0;
|
|
|
238
246
|
.fill-purple{fill: map-get($purple, $get-shade)}
|
|
239
247
|
.stroke-purple{stroke: map-get($purple, $get-shade)}
|
|
240
248
|
.color-purple-alpha{color: rgba(map-get($purple, $get-shade),0.2)!important}
|
|
249
|
+
.purple-alpha{
|
|
250
|
+
background: rgba(map-get($purple, $get-shade),0.2);
|
|
251
|
+
color: map-get($purple-contrast, $get-shade);
|
|
252
|
+
}
|
|
241
253
|
.purple{
|
|
242
254
|
background: map-get($purple, $get-shade);
|
|
243
255
|
color: map-get($purple-contrast, $get-shade);
|
|
@@ -253,6 +265,10 @@ $index: 0;
|
|
|
253
265
|
.fill-deep-purple{fill: map-get($deep-purple, $get-shade)}
|
|
254
266
|
.stroke-deep-purple{stroke: map-get($deep-purple, $get-shade)}
|
|
255
267
|
.color-deep-purple-alpha{color: rgba(map-get($deep-purple, $get-shade),0.2)!important}
|
|
268
|
+
.deep-purple-alpha{
|
|
269
|
+
background: rgba(map-get($deep-purple, $get-shade),0.2);
|
|
270
|
+
color: map-get($deep-purple-contrast, $get-shade);
|
|
271
|
+
}
|
|
256
272
|
.deep-purple{
|
|
257
273
|
background: map-get($deep-purple, $get-shade);
|
|
258
274
|
color: map-get($deep-purple-contrast, $get-shade);
|
|
@@ -268,6 +284,10 @@ $index: 0;
|
|
|
268
284
|
.fill-indigo{fill: map-get($indigo, $get-shade)}
|
|
269
285
|
.stroke-indigo{stroke: map-get($indigo, $get-shade)}
|
|
270
286
|
.color-indigo-alpha{color: rgba(map-get($indigo, $get-shade),0.2)!important}
|
|
287
|
+
.indigo-alpha{
|
|
288
|
+
background: rgba(map-get($indigo, $get-shade),0.2);
|
|
289
|
+
color: map-get($indigo-contrast, $get-shade);
|
|
290
|
+
}
|
|
271
291
|
.indigo{
|
|
272
292
|
background: map-get($indigo, $get-shade);
|
|
273
293
|
color: map-get($indigo-contrast, $get-shade);
|
|
@@ -283,6 +303,10 @@ $index: 0;
|
|
|
283
303
|
.fill-blue{fill: map-get($blue, $get-shade)}
|
|
284
304
|
.stroke-blue{stroke: map-get($blue, $get-shade)}
|
|
285
305
|
.color-blue-alpha{color: rgba(map-get($blue, $get-shade),0.2)!important}
|
|
306
|
+
.blue-alpha{
|
|
307
|
+
background: rgba(map-get($blue, $get-shade),0.2);
|
|
308
|
+
color: map-get($blue-contrast, $get-shade);
|
|
309
|
+
}
|
|
286
310
|
.blue{
|
|
287
311
|
background: map-get($blue, $get-shade);
|
|
288
312
|
color: map-get($blue-contrast, $get-shade);
|
|
@@ -298,6 +322,10 @@ $index: 0;
|
|
|
298
322
|
.fill-light-blue{fill: map-get($light-blue, $get-shade)}
|
|
299
323
|
.stroke-light-blue{stroke: map-get($light-blue, $get-shade)}
|
|
300
324
|
.color-light-blue-alpha{color: rgba(map-get($light-blue, $get-shade),0.2)!important}
|
|
325
|
+
.light-blue-alpha{
|
|
326
|
+
background: rgba(map-get($light-blue, $get-shade),0.2);
|
|
327
|
+
color: map-get($light-blue-contrast, $get-shade);
|
|
328
|
+
}
|
|
301
329
|
.light-blue{
|
|
302
330
|
background: map-get($light-blue, $get-shade);
|
|
303
331
|
color: map-get($light-blue-contrast, $get-shade);
|
|
@@ -313,6 +341,10 @@ $index: 0;
|
|
|
313
341
|
.fill-cyan{fill: map-get($cyan, $get-shade)}
|
|
314
342
|
.stroke-cyan{stroke: map-get($cyan, $get-shade)}
|
|
315
343
|
.color-cyan-alpha{color: rgba(map-get($cyan, $get-shade),0.2)!important}
|
|
344
|
+
.cyan-alpha{
|
|
345
|
+
background: rgba(map-get($cyan, $get-shade),0.2);
|
|
346
|
+
color: map-get($cyan-contrast, $get-shade);
|
|
347
|
+
}
|
|
316
348
|
.cyan{
|
|
317
349
|
background: map-get($cyan, $get-shade);
|
|
318
350
|
color: map-get($cyan-contrast, $get-shade);
|
|
@@ -328,6 +360,10 @@ $index: 0;
|
|
|
328
360
|
.fill-teal{fill: map-get($teal, $get-shade)}
|
|
329
361
|
.stroke-teal{stroke: map-get($teal, $get-shade)}
|
|
330
362
|
.color-teal-alpha{color: rgba(map-get($teal, $get-shade),0.2)!important}
|
|
363
|
+
.teal-alpha{
|
|
364
|
+
background: rgba(map-get($teal, $get-shade),0.2);
|
|
365
|
+
color: map-get($teal-contrast, $get-shade);
|
|
366
|
+
}
|
|
331
367
|
.teal{
|
|
332
368
|
background: map-get($teal, $get-shade);
|
|
333
369
|
color: map-get($teal-contrast, $get-shade);
|
|
@@ -343,6 +379,10 @@ $index: 0;
|
|
|
343
379
|
.fill-green{fill: map-get($green, $get-shade)}
|
|
344
380
|
.stroke-green{stroke: map-get($green, $get-shade)}
|
|
345
381
|
.color-green-alpha{color: rgba(map-get($green, $get-shade),0.2)!important}
|
|
382
|
+
.green-alpha{
|
|
383
|
+
background: rgba(map-get($green, $get-shade),0.2);
|
|
384
|
+
color: map-get($green-contrast, $get-shade);
|
|
385
|
+
}
|
|
346
386
|
.green{
|
|
347
387
|
background: map-get($green, $get-shade);
|
|
348
388
|
color: map-get($green-contrast, $get-shade);
|
|
@@ -358,6 +398,10 @@ $index: 0;
|
|
|
358
398
|
.fill-light-green{fill: map-get($light-green, $get-shade)}
|
|
359
399
|
.stroke-light-green{stroke: map-get($light-green, $get-shade)}
|
|
360
400
|
.color-light-green-alpha{color: rgba(map-get($light-green, $get-shade),0.2)!important}
|
|
401
|
+
.light-green-alpha{
|
|
402
|
+
background: rgba(map-get($light-green, $get-shade),0.2);
|
|
403
|
+
color: map-get($light-green-contrast, $get-shade);
|
|
404
|
+
}
|
|
361
405
|
.light-green{
|
|
362
406
|
background: map-get($light-green, $get-shade);
|
|
363
407
|
color: map-get($light-green-contrast, $get-shade);
|
|
@@ -373,6 +417,10 @@ $index: 0;
|
|
|
373
417
|
.fill-lime{fill: map-get($lime, $get-shade)}
|
|
374
418
|
.stroke-lime{stroke: map-get($lime, $get-shade)}
|
|
375
419
|
.color-lime-alpha{color: rgba(map-get($lime, $get-shade),0.2)!important}
|
|
420
|
+
.lime-alpha{
|
|
421
|
+
background: rgba(map-get($lime, $get-shade),0.2);
|
|
422
|
+
color: map-get($lime-contrast, $get-shade);
|
|
423
|
+
}
|
|
376
424
|
.lime{
|
|
377
425
|
background: map-get($lime, $get-shade);
|
|
378
426
|
color: map-get($lime-contrast, $get-shade);
|
|
@@ -388,6 +436,10 @@ $index: 0;
|
|
|
388
436
|
.fill-yellow{fill: map-get($yellow, $get-shade)}
|
|
389
437
|
.stroke-yellow{stroke: map-get($yellow, $get-shade)}
|
|
390
438
|
.color-yellow-alpha{color: rgba(map-get($yellow, $get-shade),0.2)!important}
|
|
439
|
+
.yellow-alpha{
|
|
440
|
+
background: rgba(map-get($yellow, $get-shade),0.2);
|
|
441
|
+
color: map-get($yellow-contrast, $get-shade);
|
|
442
|
+
}
|
|
391
443
|
.yellow{
|
|
392
444
|
background: map-get($yellow, $get-shade);
|
|
393
445
|
color: map-get($yellow-contrast, $get-shade);
|
|
@@ -403,6 +455,10 @@ $index: 0;
|
|
|
403
455
|
.fill-amber{fill: map-get($amber, $get-shade)}
|
|
404
456
|
.stroke-amber{stroke: map-get($amber, $get-shade)}
|
|
405
457
|
.color-amber-alpha{color: rgba(map-get($amber, $get-shade),0.2)!important}
|
|
458
|
+
.amber-alpha{
|
|
459
|
+
background: rgba(map-get($amber, $get-shade),0.2);
|
|
460
|
+
color: map-get($amber-contrast, $get-shade);
|
|
461
|
+
}
|
|
406
462
|
.amber{
|
|
407
463
|
background: map-get($amber, $get-shade);
|
|
408
464
|
color: map-get($amber-contrast, $get-shade);
|
|
@@ -418,6 +474,10 @@ $index: 0;
|
|
|
418
474
|
.fill-orange{fill: map-get($orange, $get-shade)}
|
|
419
475
|
.stroke-orange{stroke: map-get($orange, $get-shade)}
|
|
420
476
|
.color-orange-alpha{color: rgba(map-get($orange, $get-shade),0.2)!important}
|
|
477
|
+
.orange-alpha{
|
|
478
|
+
background: rgba(map-get($orange, $get-shade),0.2);
|
|
479
|
+
color: map-get($orange-contrast, $get-shade);
|
|
480
|
+
}
|
|
421
481
|
.orange{
|
|
422
482
|
background: map-get($orange, $get-shade);
|
|
423
483
|
color: map-get($orange-contrast, $get-shade);
|
|
@@ -433,6 +493,10 @@ $index: 0;
|
|
|
433
493
|
.fill-deep-orange{fill: map-get($deep-orange, $get-shade)}
|
|
434
494
|
.stroke-deep-orange{stroke: map-get($deep-orange, $get-shade)}
|
|
435
495
|
.color-deep-orange-alpha{color: rgba(map-get($deep-orange, $get-shade),0.2)!important}
|
|
496
|
+
.deep-orange-alpha{
|
|
497
|
+
background: rgba(map-get($deep-orange, $get-shade),0.2);
|
|
498
|
+
color: map-get($deep-orange-contrast, $get-shade);
|
|
499
|
+
}
|
|
436
500
|
.deep-orange{
|
|
437
501
|
background: map-get($deep-orange, $get-shade);
|
|
438
502
|
color: map-get($deep-orange-contrast, $get-shade);
|
|
@@ -448,6 +512,10 @@ $index: 0;
|
|
|
448
512
|
.fill-brown{fill: map-get($brown, $get-shade)}
|
|
449
513
|
.stroke-brown{stroke: map-get($brown, $get-shade)}
|
|
450
514
|
.color-brown-alpha{color: rgba(map-get($brown, $get-shade),0.2)!important}
|
|
515
|
+
.brown-alpha{
|
|
516
|
+
background: rgba(map-get($brown, $get-shade),0.2);
|
|
517
|
+
color: map-get($brown-contrast, $get-shade);
|
|
518
|
+
}
|
|
451
519
|
.brown{
|
|
452
520
|
background: map-get($brown, $get-shade);
|
|
453
521
|
color: map-get($brown-contrast, $get-shade);
|
|
@@ -463,6 +531,10 @@ $index: 0;
|
|
|
463
531
|
.fill-grey{fill: map-get($grey, $get-shade)}
|
|
464
532
|
.stroke-grey{stroke: map-get($grey, $get-shade)}
|
|
465
533
|
.color-grey-alpha{color: rgba(map-get($grey, $get-shade),0.2)!important}
|
|
534
|
+
.grey-alpha{
|
|
535
|
+
background: rgba(map-get($grey, $get-shade),0.2);
|
|
536
|
+
color: map-get($grey-contrast, $get-shade);
|
|
537
|
+
}
|
|
466
538
|
.grey{
|
|
467
539
|
background: map-get($grey, $get-shade);
|
|
468
540
|
color: map-get($grey-contrast, $get-shade);
|
|
@@ -478,6 +550,10 @@ $index: 0;
|
|
|
478
550
|
.fill-blue-grey{fill: map-get($blue-grey, $get-shade)}
|
|
479
551
|
.stroke-blue-grey{stroke: map-get($blue-grey, $get-shade)}
|
|
480
552
|
.color-blue-grey-alpha{color: rgba(map-get($blue-grey, $get-shade),0.2)!important}
|
|
553
|
+
.blue-grey-alpha{
|
|
554
|
+
background: rgba(map-get($blue-grey, $get-shade),0.2);
|
|
555
|
+
color: map-get($blue-grey-contrast, $get-shade);
|
|
556
|
+
}
|
|
481
557
|
.blue-grey{
|
|
482
558
|
background: map-get($blue-grey, $get-shade);
|
|
483
559
|
color: map-get($blue-grey-contrast, $get-shade);
|
|
@@ -494,6 +570,10 @@ $index: 0;
|
|
|
494
570
|
.fill-primary{fill: map-get($primary, default)}
|
|
495
571
|
.stroke-primary{stroke: map-get($primary, default)}
|
|
496
572
|
.color-primary-alpha{color: rgba(map-get($primary, default),0.2)!important}
|
|
573
|
+
.primary-alpha{
|
|
574
|
+
background: rgba(map-get($primary, $get-shade),0.2);
|
|
575
|
+
color: map-get($primary-contrast, $get-shade);
|
|
576
|
+
}
|
|
497
577
|
.primary{
|
|
498
578
|
background: map-get($primary, default);
|
|
499
579
|
color: map-get($primary, default-contrast);
|
|
@@ -510,6 +590,10 @@ $index: 0;
|
|
|
510
590
|
.fill-accent{fill: map-get($accent, default)}
|
|
511
591
|
.stroke-accent{stroke: map-get($accent, default)}
|
|
512
592
|
.color-accent-alpha{color: rgba(map-get($accent, default),0.2)!important}
|
|
593
|
+
.accent-alpha{
|
|
594
|
+
background: rgba(map-get($accent, $get-shade),0.2);
|
|
595
|
+
color: map-get($accent-contrast, $get-shade);
|
|
596
|
+
}
|
|
513
597
|
.accent{
|
|
514
598
|
background: map-get($accent, default);
|
|
515
599
|
color: map-get($accent, default-contrast);
|
|
@@ -526,6 +610,10 @@ $index: 0;
|
|
|
526
610
|
.fill-warn{fill: map-get($warn, default)}
|
|
527
611
|
.stroke-warn{stroke: map-get($warn, default)}
|
|
528
612
|
.color-warn-alpha{color: rgba(map-get($warn, default),0.2)!important}
|
|
613
|
+
.warn-alpha{
|
|
614
|
+
background: rgba(map-get($warn, $get-shade),0.2);
|
|
615
|
+
color: map-get($warn-contrast, $get-shade);
|
|
616
|
+
}
|
|
529
617
|
.warn{
|
|
530
618
|
background: map-get($warn, default);
|
|
531
619
|
color: map-get($warn, default-contrast);
|
|
@@ -542,6 +630,10 @@ $index: 0;
|
|
|
542
630
|
.fill-basic{fill: map-get($background, card)}
|
|
543
631
|
.stroke-basic{stroke: map-get($foreground, base)}
|
|
544
632
|
.color-basic-alpha{color: rgba(map-get($foreground, base),0.2)!important}
|
|
633
|
+
.basic-alpha{
|
|
634
|
+
background: rgba(map-get($basic, $get-shade),0.2);
|
|
635
|
+
color: map-get($basic-contrast, $get-shade);
|
|
636
|
+
}
|
|
545
637
|
.basic{
|
|
546
638
|
background: map-get($background, card);
|
|
547
639
|
&:not([color]){
|