@swiftwc/ui 0.0.0-dev.43 → 0.0.0-dev.44

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.
@@ -5255,8 +5255,8 @@
5255
5255
  :where([foreground="blue.secondary"]) {
5256
5256
  color: var(--blue2);
5257
5257
  }
5258
- :where([tint='"" + $tint'],
5259
- [list-item-tint='"" + $tint']) {
5258
+ :where([tint=gray],
5259
+ [list-item-tint=gray]) {
5260
5260
  --accentColorEffective: var(--gray);
5261
5261
  --accentColorEffective4: var(--gray4);
5262
5262
  --accentColor: var(--gray);
@@ -5265,8 +5265,8 @@
5265
5265
  --accentColor4: var(--gray4);
5266
5266
  --accentColor5: var(--gray5);
5267
5267
  }
5268
- :where([tint='"" + $tint'],
5269
- [list-item-tint='"" + $tint']) {
5268
+ :where([tint=blue],
5269
+ [list-item-tint=blue]) {
5270
5270
  --accentColorEffective: var(--blue);
5271
5271
  --accentColorEffective4: var(--blue4);
5272
5272
  --accentColor: var(--blue);
@@ -5275,8 +5275,8 @@
5275
5275
  --accentColor4: var(--blue4);
5276
5276
  --accentColor5: var(--blue5);
5277
5277
  }
5278
- :where([tint='"" + $tint'],
5279
- [list-item-tint='"" + $tint']) {
5278
+ :where([tint=red],
5279
+ [list-item-tint=red]) {
5280
5280
  --accentColorEffective: var(--red);
5281
5281
  --accentColorEffective4: var(--red4);
5282
5282
  --accentColor: var(--red);
@@ -5285,8 +5285,8 @@
5285
5285
  --accentColor4: var(--red4);
5286
5286
  --accentColor5: var(--red5);
5287
5287
  }
5288
- :where([tint='"" + $tint'],
5289
- [list-item-tint='"" + $tint']) {
5288
+ :where([tint=green],
5289
+ [list-item-tint=green]) {
5290
5290
  --accentColorEffective: var(--green);
5291
5291
  --accentColorEffective4: var(--green4);
5292
5292
  --accentColor: var(--green);
@@ -5295,8 +5295,8 @@
5295
5295
  --accentColor4: var(--green4);
5296
5296
  --accentColor5: var(--green5);
5297
5297
  }
5298
- :where([tint='"" + $tint'],
5299
- [list-item-tint='"" + $tint']) {
5298
+ :where([tint=orange],
5299
+ [list-item-tint=orange]) {
5300
5300
  --accentColorEffective: var(--orange);
5301
5301
  --accentColorEffective4: var(--orange4);
5302
5302
  --accentColor: var(--orange);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swiftwc/ui",
3
- "version": "0.0.0-dev.43",
3
+ "version": "0.0.0-dev.44",
4
4
  "description": "Elegant SwiftUI-inspired web components for standalone web apps and web extensions.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -38,8 +38,8 @@
38
38
  }
39
39
 
40
40
  @each $tint in gray, blue, red, green, orange {
41
- [tint='"" + $tint'],
42
- [list-item-tint='"" + $tint'] {
41
+ [tint='#{"" + $tint}'],
42
+ [list-item-tint='#{"" + $tint}'] {
43
43
  :where(&) {
44
44
  --accentColorEffective: var(--#{$tint});
45
45
  --accentColorEffective4: var(--#{$tint}4);