matcha-theme 1.0.3 → 1.0.4
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 +3 -4
- package/package.json +1 -1
package/abstracts/_colors.scss
CHANGED
|
@@ -274,9 +274,6 @@ $index: 0;
|
|
|
274
274
|
|
|
275
275
|
@each $paletteName, $palette in $themePalette {
|
|
276
276
|
// generate
|
|
277
|
-
.tapibaquifrafo {
|
|
278
|
-
background: red;
|
|
279
|
-
}
|
|
280
277
|
.base-#{$paletteName},
|
|
281
278
|
.#{$paletteName} {
|
|
282
279
|
background: map-get($palette, default);
|
|
@@ -395,9 +392,11 @@ $index: 0;
|
|
|
395
392
|
#{$attribute}: map-get($background, card-alpha) !important;
|
|
396
393
|
}
|
|
397
394
|
|
|
398
|
-
.#{$attribute}-hover,
|
|
399
395
|
.#{$attribute}-placeholder {
|
|
400
396
|
#{$attribute}: map-get($foreground, placeholder) !important;
|
|
397
|
+
&-alpha {
|
|
398
|
+
background: rgba(map-get($foreground, placeholder), 0.2) !important;
|
|
399
|
+
}
|
|
401
400
|
}
|
|
402
401
|
|
|
403
402
|
.#{$attribute}-label {
|