matcha-theme 20.195.0 → 20.196.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/_functions.scss +54 -54
- package/package.json +1 -1
|
@@ -175,11 +175,11 @@
|
|
|
175
175
|
$is-dark: map.get($theme, is-dark);
|
|
176
176
|
|
|
177
177
|
@if $is-dark {
|
|
178
|
-
@return rgba($color-base-blue-grey-100, 0.
|
|
178
|
+
@return rgba($color-base-blue-grey-100, 0.1); // Cor clara para tema light
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
@else {
|
|
182
|
-
@return rgba($color-base-blue-grey-900, 0.
|
|
182
|
+
@return rgba($color-base-blue-grey-900, 0.1); // Cor escura para tema dark
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
185
|
|
|
@@ -199,11 +199,11 @@
|
|
|
199
199
|
$is-dark: map.get($theme, is-dark);
|
|
200
200
|
|
|
201
201
|
@if $is-dark {
|
|
202
|
-
@return rgba($color-base-blue-grey-900, 0.
|
|
202
|
+
@return rgba($color-base-blue-grey-900, 0.1); // Cor clara para tema light
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
@else {
|
|
206
|
-
@return rgba($color-base-blue-grey-100, 0.
|
|
206
|
+
@return rgba($color-base-blue-grey-100, 0.1); // Cor escura para tema dark
|
|
207
207
|
}
|
|
208
208
|
}
|
|
209
209
|
|
|
@@ -260,13 +260,13 @@
|
|
|
260
260
|
|
|
261
261
|
@function getRedAlpha($theme) {
|
|
262
262
|
$red-color: getRed($theme);
|
|
263
|
-
$red-color-alpha: rgba($red-color, 0.
|
|
263
|
+
$red-color-alpha: rgba($red-color, 0.1);
|
|
264
264
|
@return $red-color-alpha;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
267
|
@function getRedContrastAlpha($theme) {
|
|
268
268
|
$red-contrast: getRedContrast($theme);
|
|
269
|
-
$red-contrast-alpha: rgba($red-contrast, 0.
|
|
269
|
+
$red-contrast-alpha: rgba($red-contrast, 0.1);
|
|
270
270
|
@return $red-contrast-alpha;
|
|
271
271
|
}
|
|
272
272
|
|
|
@@ -284,13 +284,13 @@
|
|
|
284
284
|
|
|
285
285
|
@function getPinkAlpha($theme) {
|
|
286
286
|
$pink-color: getPink($theme);
|
|
287
|
-
$pink-color-alpha: rgba($pink-color, 0.
|
|
287
|
+
$pink-color-alpha: rgba($pink-color, 0.1);
|
|
288
288
|
@return $pink-color-alpha;
|
|
289
289
|
}
|
|
290
290
|
|
|
291
291
|
@function getPinkContrastAlpha($theme) {
|
|
292
292
|
$pink-contrast: getPinkContrast($theme);
|
|
293
|
-
$pink-contrast-alpha: rgba($pink-contrast, 0.
|
|
293
|
+
$pink-contrast-alpha: rgba($pink-contrast, 0.1);
|
|
294
294
|
@return $pink-contrast-alpha;
|
|
295
295
|
}
|
|
296
296
|
|
|
@@ -308,13 +308,13 @@
|
|
|
308
308
|
|
|
309
309
|
@function getPurpleAlpha($theme) {
|
|
310
310
|
$purple-color: getPurple($theme);
|
|
311
|
-
$purple-color-alpha: rgba($purple-color, 0.
|
|
311
|
+
$purple-color-alpha: rgba($purple-color, 0.1);
|
|
312
312
|
@return $purple-color-alpha;
|
|
313
313
|
}
|
|
314
314
|
|
|
315
315
|
@function getPurpleContrastAlpha($theme) {
|
|
316
316
|
$purple-contrast: getPurpleContrast($theme);
|
|
317
|
-
$purple-contrast-alpha: rgba($purple-contrast, 0.
|
|
317
|
+
$purple-contrast-alpha: rgba($purple-contrast, 0.1);
|
|
318
318
|
@return $purple-contrast-alpha;
|
|
319
319
|
}
|
|
320
320
|
|
|
@@ -332,13 +332,13 @@
|
|
|
332
332
|
|
|
333
333
|
@function getDeepPurpleAlpha($theme) {
|
|
334
334
|
$deep-purple-color: getDeepPurple($theme);
|
|
335
|
-
$deep-purple-color-alpha: rgba($deep-purple-color, 0.
|
|
335
|
+
$deep-purple-color-alpha: rgba($deep-purple-color, 0.1);
|
|
336
336
|
@return $deep-purple-color-alpha;
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
@function getDeepPurpleContrastAlpha($theme) {
|
|
340
340
|
$deep-purple-contrast: getDeepPurpleContrast($theme);
|
|
341
|
-
$deep-purple-contrast-alpha: rgba($deep-purple-contrast, 0.
|
|
341
|
+
$deep-purple-contrast-alpha: rgba($deep-purple-contrast, 0.1);
|
|
342
342
|
@return $deep-purple-contrast-alpha;
|
|
343
343
|
}
|
|
344
344
|
|
|
@@ -356,13 +356,13 @@
|
|
|
356
356
|
|
|
357
357
|
@function getIndigoAlpha($theme) {
|
|
358
358
|
$indigo-color: getIndigo($theme);
|
|
359
|
-
$indigo-color-alpha: rgba($indigo-color, 0.
|
|
359
|
+
$indigo-color-alpha: rgba($indigo-color, 0.1);
|
|
360
360
|
@return $indigo-color-alpha;
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
@function getIndigoContrastAlpha($theme) {
|
|
364
364
|
$indigo-contrast: getIndigoContrast($theme);
|
|
365
|
-
$indigo-contrast-alpha: rgba($indigo-contrast, 0.
|
|
365
|
+
$indigo-contrast-alpha: rgba($indigo-contrast, 0.1);
|
|
366
366
|
@return $indigo-contrast-alpha;
|
|
367
367
|
}
|
|
368
368
|
|
|
@@ -380,13 +380,13 @@
|
|
|
380
380
|
|
|
381
381
|
@function getBlueAlpha($theme) {
|
|
382
382
|
$blue-color: getBlue($theme);
|
|
383
|
-
$blue-color-alpha: rgba($blue-color, 0.
|
|
383
|
+
$blue-color-alpha: rgba($blue-color, 0.1);
|
|
384
384
|
@return $blue-color-alpha;
|
|
385
385
|
}
|
|
386
386
|
|
|
387
387
|
@function getBlueContrastAlpha($theme) {
|
|
388
388
|
$blue-contrast: getBlueContrast($theme);
|
|
389
|
-
$blue-contrast-alpha: rgba($blue-contrast, 0.
|
|
389
|
+
$blue-contrast-alpha: rgba($blue-contrast, 0.1);
|
|
390
390
|
@return $blue-contrast-alpha;
|
|
391
391
|
}
|
|
392
392
|
|
|
@@ -404,13 +404,13 @@
|
|
|
404
404
|
|
|
405
405
|
@function getLightBlueAlpha($theme) {
|
|
406
406
|
$light-blue-color: getLightBlue($theme);
|
|
407
|
-
$light-blue-color-alpha: rgba($light-blue-color, 0.
|
|
407
|
+
$light-blue-color-alpha: rgba($light-blue-color, 0.1);
|
|
408
408
|
@return $light-blue-color-alpha;
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
@function getLightBlueContrastAlpha($theme) {
|
|
412
412
|
$light-blue-contrast: getLightBlueContrast($theme);
|
|
413
|
-
$light-blue-contrast-alpha: rgba($light-blue-contrast, 0.
|
|
413
|
+
$light-blue-contrast-alpha: rgba($light-blue-contrast, 0.1);
|
|
414
414
|
@return $light-blue-contrast-alpha;
|
|
415
415
|
}
|
|
416
416
|
|
|
@@ -428,13 +428,13 @@
|
|
|
428
428
|
|
|
429
429
|
@function getCyanAlpha($theme) {
|
|
430
430
|
$cyan-color: getCyan($theme);
|
|
431
|
-
$cyan-color-alpha: rgba($cyan-color, 0.
|
|
431
|
+
$cyan-color-alpha: rgba($cyan-color, 0.1);
|
|
432
432
|
@return $cyan-color-alpha;
|
|
433
433
|
}
|
|
434
434
|
|
|
435
435
|
@function getCyanContrastAlpha($theme) {
|
|
436
436
|
$cyan-contrast: getCyanContrast($theme);
|
|
437
|
-
$cyan-contrast-alpha: rgba($cyan-contrast, 0.
|
|
437
|
+
$cyan-contrast-alpha: rgba($cyan-contrast, 0.1);
|
|
438
438
|
@return $cyan-contrast-alpha;
|
|
439
439
|
}
|
|
440
440
|
|
|
@@ -452,13 +452,13 @@
|
|
|
452
452
|
|
|
453
453
|
@function getTealAlpha($theme) {
|
|
454
454
|
$teal-color: getTeal($theme);
|
|
455
|
-
$teal-color-alpha: rgba($teal-color, 0.
|
|
455
|
+
$teal-color-alpha: rgba($teal-color, 0.1);
|
|
456
456
|
@return $teal-color-alpha;
|
|
457
457
|
}
|
|
458
458
|
|
|
459
459
|
@function getTealContrastAlpha($theme) {
|
|
460
460
|
$teal-contrast: getTealContrast($theme);
|
|
461
|
-
$teal-contrast-alpha: rgba($teal-contrast, 0.
|
|
461
|
+
$teal-contrast-alpha: rgba($teal-contrast, 0.1);
|
|
462
462
|
@return $teal-contrast-alpha;
|
|
463
463
|
}
|
|
464
464
|
|
|
@@ -476,13 +476,13 @@
|
|
|
476
476
|
|
|
477
477
|
@function getGreenAlpha($theme) {
|
|
478
478
|
$green-color: getGreen($theme);
|
|
479
|
-
$green-color-alpha: rgba($green-color, 0.
|
|
479
|
+
$green-color-alpha: rgba($green-color, 0.1);
|
|
480
480
|
@return $green-color-alpha;
|
|
481
481
|
}
|
|
482
482
|
|
|
483
483
|
@function getGreenContrastAlpha($theme) {
|
|
484
484
|
$green-contrast: getGreenContrast($theme);
|
|
485
|
-
$green-contrast-alpha: rgba($green-contrast, 0.
|
|
485
|
+
$green-contrast-alpha: rgba($green-contrast, 0.1);
|
|
486
486
|
@return $green-contrast-alpha;
|
|
487
487
|
}
|
|
488
488
|
|
|
@@ -500,13 +500,13 @@
|
|
|
500
500
|
|
|
501
501
|
@function getLightGreenAlpha($theme) {
|
|
502
502
|
$light-green-color: getLightGreen($theme);
|
|
503
|
-
$light-green-color-alpha: rgba($light-green-color, 0.
|
|
503
|
+
$light-green-color-alpha: rgba($light-green-color, 0.1);
|
|
504
504
|
@return $light-green-color-alpha;
|
|
505
505
|
}
|
|
506
506
|
|
|
507
507
|
@function getLightGreenContrastAlpha($theme) {
|
|
508
508
|
$light-green-contrast: getLightGreenContrast($theme);
|
|
509
|
-
$light-green-contrast-alpha: rgba($light-green-contrast, 0.
|
|
509
|
+
$light-green-contrast-alpha: rgba($light-green-contrast, 0.1);
|
|
510
510
|
@return $light-green-contrast-alpha;
|
|
511
511
|
}
|
|
512
512
|
|
|
@@ -524,13 +524,13 @@
|
|
|
524
524
|
|
|
525
525
|
@function getLimeAlpha($theme) {
|
|
526
526
|
$lime-color: getLime($theme);
|
|
527
|
-
$lime-color-alpha: rgba($lime-color, 0.
|
|
527
|
+
$lime-color-alpha: rgba($lime-color, 0.1);
|
|
528
528
|
@return $lime-color-alpha;
|
|
529
529
|
}
|
|
530
530
|
|
|
531
531
|
@function getLimeContrastAlpha($theme) {
|
|
532
532
|
$lime-contrast: getLimeContrast($theme);
|
|
533
|
-
$lime-contrast-alpha: rgba($lime-contrast, 0.
|
|
533
|
+
$lime-contrast-alpha: rgba($lime-contrast, 0.1);
|
|
534
534
|
@return $lime-contrast-alpha;
|
|
535
535
|
}
|
|
536
536
|
|
|
@@ -548,13 +548,13 @@
|
|
|
548
548
|
|
|
549
549
|
@function getYellowAlpha($theme) {
|
|
550
550
|
$yellow-color: getYellow($theme);
|
|
551
|
-
$yellow-color-alpha: rgba($yellow-color, 0.
|
|
551
|
+
$yellow-color-alpha: rgba($yellow-color, 0.1);
|
|
552
552
|
@return $yellow-color-alpha;
|
|
553
553
|
}
|
|
554
554
|
|
|
555
555
|
@function getYellowContrastAlpha($theme) {
|
|
556
556
|
$yellow-contrast: getYellowContrast($theme);
|
|
557
|
-
$yellow-contrast-alpha: rgba($yellow-contrast, 0.
|
|
557
|
+
$yellow-contrast-alpha: rgba($yellow-contrast, 0.1);
|
|
558
558
|
@return $yellow-contrast-alpha;
|
|
559
559
|
}
|
|
560
560
|
|
|
@@ -572,13 +572,13 @@
|
|
|
572
572
|
|
|
573
573
|
@function getAmberAlpha($theme) {
|
|
574
574
|
$amber-color: getAmber($theme);
|
|
575
|
-
$amber-color-alpha: rgba($amber-color, 0.
|
|
575
|
+
$amber-color-alpha: rgba($amber-color, 0.1);
|
|
576
576
|
@return $amber-color-alpha;
|
|
577
577
|
}
|
|
578
578
|
|
|
579
579
|
@function getAmberContrastAlpha($theme) {
|
|
580
580
|
$amber-contrast: getAmberContrast($theme);
|
|
581
|
-
$amber-contrast-alpha: rgba($amber-contrast, 0.
|
|
581
|
+
$amber-contrast-alpha: rgba($amber-contrast, 0.1);
|
|
582
582
|
@return $amber-contrast-alpha;
|
|
583
583
|
}
|
|
584
584
|
|
|
@@ -596,13 +596,13 @@
|
|
|
596
596
|
|
|
597
597
|
@function getOrangeAlpha($theme) {
|
|
598
598
|
$orange-color: getOrange($theme);
|
|
599
|
-
$orange-color-alpha: rgba($orange-color, 0.
|
|
599
|
+
$orange-color-alpha: rgba($orange-color, 0.1);
|
|
600
600
|
@return $orange-color-alpha;
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
@function getOrangeContrastAlpha($theme) {
|
|
604
604
|
$orange-contrast: getOrangeContrast($theme);
|
|
605
|
-
$orange-contrast-alpha: rgba($orange-contrast, 0.
|
|
605
|
+
$orange-contrast-alpha: rgba($orange-contrast, 0.1);
|
|
606
606
|
@return $orange-contrast-alpha;
|
|
607
607
|
}
|
|
608
608
|
|
|
@@ -620,13 +620,13 @@
|
|
|
620
620
|
|
|
621
621
|
@function getDeepOrangeAlpha($theme) {
|
|
622
622
|
$deep-orange-color: getDeepOrange($theme);
|
|
623
|
-
$deep-orange-color-alpha: rgba($deep-orange-color, 0.
|
|
623
|
+
$deep-orange-color-alpha: rgba($deep-orange-color, 0.1);
|
|
624
624
|
@return $deep-orange-color-alpha;
|
|
625
625
|
}
|
|
626
626
|
|
|
627
627
|
@function getDeepOrangeContrastAlpha($theme) {
|
|
628
628
|
$deep-orange-contrast: getDeepOrangeContrast($theme);
|
|
629
|
-
$deep-orange-contrast-alpha: rgba($deep-orange-contrast, 0.
|
|
629
|
+
$deep-orange-contrast-alpha: rgba($deep-orange-contrast, 0.1);
|
|
630
630
|
@return $deep-orange-contrast-alpha;
|
|
631
631
|
}
|
|
632
632
|
|
|
@@ -644,13 +644,13 @@
|
|
|
644
644
|
|
|
645
645
|
@function getBrownAlpha($theme) {
|
|
646
646
|
$brown-color: getBrown($theme);
|
|
647
|
-
$brown-color-alpha: rgba($brown-color, 0.
|
|
647
|
+
$brown-color-alpha: rgba($brown-color, 0.1);
|
|
648
648
|
@return $brown-color-alpha;
|
|
649
649
|
}
|
|
650
650
|
|
|
651
651
|
@function getBrownContrastAlpha($theme) {
|
|
652
652
|
$brown-contrast: getBrownContrast($theme);
|
|
653
|
-
$brown-contrast-alpha: rgba($brown-contrast, 0.
|
|
653
|
+
$brown-contrast-alpha: rgba($brown-contrast, 0.1);
|
|
654
654
|
@return $brown-contrast-alpha;
|
|
655
655
|
}
|
|
656
656
|
|
|
@@ -668,13 +668,13 @@
|
|
|
668
668
|
|
|
669
669
|
@function getGreyAlpha($theme) {
|
|
670
670
|
$grey-color: getGrey($theme);
|
|
671
|
-
$grey-color-alpha: rgba($grey-color, 0.
|
|
671
|
+
$grey-color-alpha: rgba($grey-color, 0.1);
|
|
672
672
|
@return $grey-color-alpha;
|
|
673
673
|
}
|
|
674
674
|
|
|
675
675
|
@function getGreyContrastAlpha($theme) {
|
|
676
676
|
$grey-contrast: getGreyContrast($theme);
|
|
677
|
-
$grey-contrast-alpha: rgba($grey-contrast, 0.
|
|
677
|
+
$grey-contrast-alpha: rgba($grey-contrast, 0.1);
|
|
678
678
|
@return $grey-contrast-alpha;
|
|
679
679
|
}
|
|
680
680
|
|
|
@@ -692,13 +692,13 @@
|
|
|
692
692
|
|
|
693
693
|
@function getBlueGreyAlpha($theme) {
|
|
694
694
|
$blue-grey-color: getBlueGrey($theme);
|
|
695
|
-
$blue-grey-color-alpha: rgba($blue-grey-color, 0.
|
|
695
|
+
$blue-grey-color-alpha: rgba($blue-grey-color, 0.1);
|
|
696
696
|
@return $blue-grey-color-alpha;
|
|
697
697
|
}
|
|
698
698
|
|
|
699
699
|
@function getBlueGreyContrastAlpha($theme) {
|
|
700
700
|
$blue-grey-contrast: getBlueGreyContrast($theme);
|
|
701
|
-
$blue-grey-contrast-alpha: rgba($blue-grey-contrast, 0.
|
|
701
|
+
$blue-grey-contrast-alpha: rgba($blue-grey-contrast, 0.1);
|
|
702
702
|
@return $blue-grey-contrast-alpha;
|
|
703
703
|
}
|
|
704
704
|
|
|
@@ -717,13 +717,13 @@
|
|
|
717
717
|
|
|
718
718
|
@function getPrimaryAlpha($theme) {
|
|
719
719
|
$primary-color: getPrimary($theme);
|
|
720
|
-
$primary-color-alpha: rgba($primary-color, 0.
|
|
720
|
+
$primary-color-alpha: rgba($primary-color, 0.1);
|
|
721
721
|
@return $primary-color-alpha;
|
|
722
722
|
}
|
|
723
723
|
|
|
724
724
|
@function getPrimaryContrastAlpha($theme) {
|
|
725
725
|
$primary-contrast: getPrimaryContrast($theme);
|
|
726
|
-
$primary-contrast-alpha: rgba($primary-contrast, 0.
|
|
726
|
+
$primary-contrast-alpha: rgba($primary-contrast, 0.1);
|
|
727
727
|
@return $primary-contrast-alpha;
|
|
728
728
|
}
|
|
729
729
|
|
|
@@ -742,13 +742,13 @@
|
|
|
742
742
|
|
|
743
743
|
@function getAccentAlpha($theme) {
|
|
744
744
|
$accent-color: getAccent($theme);
|
|
745
|
-
$accent-color-alpha: rgba($accent-color, 0.
|
|
745
|
+
$accent-color-alpha: rgba($accent-color, 0.1);
|
|
746
746
|
@return $accent-color-alpha;
|
|
747
747
|
}
|
|
748
748
|
|
|
749
749
|
@function getAccentContrastAlpha($theme) {
|
|
750
750
|
$accent-contrast: getAccentContrast($theme);
|
|
751
|
-
$accent-contrast-alpha: rgba($accent-contrast, 0.
|
|
751
|
+
$accent-contrast-alpha: rgba($accent-contrast, 0.1);
|
|
752
752
|
@return $accent-contrast-alpha;
|
|
753
753
|
}
|
|
754
754
|
|
|
@@ -767,13 +767,13 @@
|
|
|
767
767
|
|
|
768
768
|
@function getDangerAlpha($theme) {
|
|
769
769
|
$danger-color: getDanger($theme);
|
|
770
|
-
$danger-color-alpha: rgba($danger-color, 0.
|
|
770
|
+
$danger-color-alpha: rgba($danger-color, 0.1);
|
|
771
771
|
@return $danger-color-alpha;
|
|
772
772
|
}
|
|
773
773
|
|
|
774
774
|
@function getDangerContrastAlpha($theme) {
|
|
775
775
|
$danger-contrast: getDangerContrast($theme);
|
|
776
|
-
$danger-contrast-alpha: rgba($danger-contrast, 0.
|
|
776
|
+
$danger-contrast-alpha: rgba($danger-contrast, 0.1);
|
|
777
777
|
@return $danger-contrast-alpha;
|
|
778
778
|
}
|
|
779
779
|
|
|
@@ -792,13 +792,13 @@
|
|
|
792
792
|
|
|
793
793
|
@function getWarnAlpha($theme) {
|
|
794
794
|
$warn-color: getWarn($theme);
|
|
795
|
-
$warn-color-alpha: rgba($warn-color, 0.
|
|
795
|
+
$warn-color-alpha: rgba($warn-color, 0.1);
|
|
796
796
|
@return $warn-color-alpha;
|
|
797
797
|
}
|
|
798
798
|
|
|
799
799
|
@function getWarnContrastAlpha($theme) {
|
|
800
800
|
$warn-contrast: getWarnContrast($theme);
|
|
801
|
-
$warn-contrast-alpha: rgba($warn-contrast, 0.
|
|
801
|
+
$warn-contrast-alpha: rgba($warn-contrast, 0.1);
|
|
802
802
|
@return $warn-contrast-alpha;
|
|
803
803
|
}
|
|
804
804
|
|
|
@@ -817,13 +817,13 @@
|
|
|
817
817
|
|
|
818
818
|
@function getSuccessAlpha($theme) {
|
|
819
819
|
$success-color: getSuccess($theme);
|
|
820
|
-
$success-color-alpha: rgba($success-color, 0.
|
|
820
|
+
$success-color-alpha: rgba($success-color, 0.1);
|
|
821
821
|
@return $success-color-alpha;
|
|
822
822
|
}
|
|
823
823
|
|
|
824
824
|
@function getSuccessContrastAlpha($theme) {
|
|
825
825
|
$success-contrast: getSuccessContrast($theme);
|
|
826
|
-
$success-contrast-alpha: rgba($success-contrast, 0.
|
|
826
|
+
$success-contrast-alpha: rgba($success-contrast, 0.1);
|
|
827
827
|
@return $success-contrast-alpha;
|
|
828
828
|
}
|
|
829
829
|
|
|
@@ -842,13 +842,13 @@
|
|
|
842
842
|
|
|
843
843
|
@function getInfoAlpha($theme) {
|
|
844
844
|
$info-color: getInfo($theme);
|
|
845
|
-
$info-color-alpha: rgba($info-color, 0.
|
|
845
|
+
$info-color-alpha: rgba($info-color, 0.1);
|
|
846
846
|
@return $info-color-alpha;
|
|
847
847
|
}
|
|
848
848
|
|
|
849
849
|
@function getInfoContrastAlpha($theme) {
|
|
850
850
|
$info-contrast: getInfoContrast($theme);
|
|
851
|
-
$info-contrast-alpha: rgba($info-contrast, 0.
|
|
851
|
+
$info-contrast-alpha: rgba($info-contrast, 0.1);
|
|
852
852
|
@return $info-contrast-alpha;
|
|
853
853
|
}
|
|
854
854
|
|