matcha-theme 19.21.0 → 19.22.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 +1 -1
- package/components/matcha-buttons.scss +14 -14
- package/package.json +1 -1
package/abstracts/_colors.scss
CHANGED
|
@@ -172,7 +172,7 @@ $index: 0;
|
|
|
172
172
|
$deep-orange-contrast: map-get($deep-orange, 'contrast');
|
|
173
173
|
$brown: map-get($palettes, brown);
|
|
174
174
|
$brown-contrast: map-get($brown, 'contrast');
|
|
175
|
-
$
|
|
175
|
+
$grey: map-get($palettes, grey);
|
|
176
176
|
$grey-contrast: map-get($grey, 'contrast');
|
|
177
177
|
$blue-grey: map-get($palettes, blue-grey);
|
|
178
178
|
$blue-grey-contrast: map-get($blue-grey, 'contrast');
|
|
@@ -226,7 +226,7 @@ a[matcha-button] {
|
|
|
226
226
|
$deep-orange-contrast: map-get($deep-orange, 'contrast');
|
|
227
227
|
$brown: map-get($palettes, brown);
|
|
228
228
|
$brown-contrast: map-get($brown, 'contrast');
|
|
229
|
-
$
|
|
229
|
+
$grey: map-get($palettes, grey);
|
|
230
230
|
$grey-contrast: map-get($grey, 'contrast');
|
|
231
231
|
$blue-grey: map-get($palettes, blue-grey);
|
|
232
232
|
$blue-grey-contrast: map-get($blue-grey, 'contrast');
|
|
@@ -572,24 +572,24 @@ a[matcha-button] {
|
|
|
572
572
|
}
|
|
573
573
|
&[color="brown"] .ripple{background: rgba(map-get($brown-contrast, $get-shade), 0.2)}
|
|
574
574
|
|
|
575
|
-
//
|
|
576
|
-
&[color="
|
|
577
|
-
background: rgba(map-get($
|
|
575
|
+
// grey
|
|
576
|
+
&[color="grey"][outline]:not([outline="false"]) .ripple {
|
|
577
|
+
background: rgba(map-get($grey, $get-shade), 0.2)
|
|
578
578
|
}
|
|
579
|
-
&[color="
|
|
580
|
-
background: rgba(map-get($
|
|
581
|
-
color: map-get($
|
|
579
|
+
&[color="grey"][alpha]:not([alpha="false"]){
|
|
580
|
+
background: rgba(map-get($grey, $get-shade), 0.2);
|
|
581
|
+
color: map-get($grey, $get-shade);
|
|
582
582
|
}
|
|
583
|
-
&[color="
|
|
584
|
-
&[color="
|
|
585
|
-
&[color="
|
|
586
|
-
color: map-get($
|
|
583
|
+
&[color="grey"][outline]:not([outline="false"]),
|
|
584
|
+
&[color="grey"][link]:not([link="false"]),
|
|
585
|
+
&[color="grey"][basic]:not([basic="false"]) {
|
|
586
|
+
color: map-get($grey, $get-shade)!important
|
|
587
587
|
}
|
|
588
|
-
&[color="
|
|
589
|
-
background: map-get($
|
|
588
|
+
&[color="grey"]{
|
|
589
|
+
background: map-get($grey, $get-shade);
|
|
590
590
|
color: map-get($grey-contrast, $get-shade);
|
|
591
591
|
}
|
|
592
|
-
&[color="
|
|
592
|
+
&[color="grey"] .ripple{background: rgba(map-get($grey-contrast, $get-shade), 0.2)}
|
|
593
593
|
|
|
594
594
|
// blue-grey
|
|
595
595
|
&[color="blue-grey"][outline]:not([outline="false"]) .ripple {
|