matcha-theme 19.61.0 → 19.62.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/base/_reset.scss CHANGED
@@ -117,7 +117,7 @@ How to use
117
117
  .matcha-message-box,
118
118
  .matcha-msg-box,
119
119
  .message-box {
120
- background-color: rgba(map-get($primary, default), 0.2);
120
+ background-color: getPrimaryAlpha($theme);
121
121
  border-left-color: map-get($primary, default);
122
122
  color: map-get($foreground, foreground);
123
123
 
@@ -181,11 +181,11 @@
181
181
 
182
182
  // fg
183
183
  &[color="fg"][alpha]:not([alpha="false"]){
184
- background: rgba(map-get($foreground, foreground), 0.2);
184
+ background: getForegroundAlpha($theme);
185
185
  color: map-get($foreground, foreground)
186
186
  }
187
187
  &[color="fg"][tint]:not([tint="false"]){
188
- background: rgba(map-get($foreground, foreground), 0.2);
188
+ background: getForegroundAlpha($theme);
189
189
  color: map-get($foreground, foreground);
190
190
  }
191
191
  &[color="fg"][outline]:not([outline="false"]),
@@ -200,11 +200,11 @@
200
200
 
201
201
  //basic
202
202
  &[color="basic"][alpha]:not([alpha="false"]){
203
- background: rgba(map-get($foreground, foreground), 0.2);
203
+ background: getForegroundAlpha($theme);
204
204
  color: map-get($foreground, foreground)
205
205
  }
206
206
  &[color="basic"][tint]:not([tint="false"]){
207
- background: rgba(map-get($foreground, foreground), 0.2);
207
+ background: getForegroundAlpha($theme);
208
208
  color: getForeground($theme);
209
209
  }
210
210
  &[color="basic"][outline]:not([outline="false"]),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matcha-theme",
3
- "version": "19.61.0",
3
+ "version": "19.62.0",
4
4
  "description": "Themes for matcha-design-system",
5
5
  "main": "main.scss",
6
6
  "scripts": {