@dynamic-framework/ui-react 1.22.0 → 1.24.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.
@@ -22,7 +22,11 @@
22
22
  --#{$prefix}#{$color}-rgb: #{to-rgb($value)};
23
23
  }
24
24
 
25
- @each $color, $value in $theme-colors-palletes {
25
+ @each $color, $value in $bg-soft-colors {
26
+ --#{$prefix}#{$color}-rgb: #{to-rgb($value)};
27
+ }
28
+
29
+ @each $color, $value in $theme-colors-palettes {
26
30
  @if str-index($color, "-500") {
27
31
  $base-color-name: str-slice($color, 1, str-index($color, "-500") - 1);
28
32
  --#{$prefix}#{$color}-rgb: var(--#{$prefix}#{$base-color-name}-rgb);
@@ -45,6 +49,10 @@
45
49
  @each $color, $value in $bg-surface-colors {
46
50
  --#{$prefix}#{$color}: rgb(var(--#{$prefix}#{$color}-rgb));
47
51
  }
52
+
53
+ @each $color, $value in $bg-soft-colors {
54
+ --#{$prefix}#{$color}: rgb(var(--#{$prefix}#{$color}-rgb));
55
+ }
48
56
  // end custom
49
57
 
50
58
  @each $color, $value in $theme-colors {
@@ -61,7 +69,7 @@
61
69
  // end custom
62
70
 
63
71
  // custom
64
- @each $color, $value in $theme-colors-palletes {
72
+ @each $color, $value in $theme-colors-palettes {
65
73
  --#{$prefix}#{$color}: rgb(var(--#{$prefix}#{$color}-rgb));
66
74
  }
67
75
  // end custom
@@ -217,7 +225,7 @@
217
225
  $hover-text-color: color-contrast-var(map-get($all-colors, gray-200)),
218
226
  $focus-text-color: color-contrast-var(map-get($all-colors, gray-200)),
219
227
  $active-text-color: color-contrast-var(map-get($all-colors, gray-300)),
220
- $disabled-opacity: .5
228
+ $disabled-opacity: .65
221
229
  );
222
230
  @include df-button-outline-variant-variables(
223
231
  "light",
@@ -249,7 +257,7 @@
249
257
  $hover-text-color: color-contrast-var(map-get($all-colors, gray-800)),
250
258
  $focus-text-color: color-contrast-var(map-get($all-colors, gray-800)),
251
259
  $active-text-color: color-contrast-var(map-get($all-colors, gray-700)),
252
- $disabled-opacity: .5
260
+ $disabled-opacity: .65
253
261
  );
254
262
  @include df-button-outline-variant-variables(
255
263
  "dark",