@elderbyte/ngx-starter 20.0.1 → 20.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elderbyte/ngx-starter",
3
- "version": "20.0.1",
3
+ "version": "20.0.2",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^20.0.0 || ^21.0.0",
6
6
  "@angular/common": "^20.0.0 || ^21.0.0",
@@ -166,6 +166,31 @@
166
166
  @include standard-chip-content-color-variant($col);
167
167
  }
168
168
  }
169
+
170
+ &.elder-dark-theme .mat-mdc-chip.mat-mdc-chip.mat-mdc-chip-highlighted {
171
+ & {
172
+ $col: map.get(config.$palettes, primary, 80);
173
+ @include standard-chip-content-color-variant($col);
174
+ }
175
+
176
+ &.color-primary,
177
+ &[color='primary'] {
178
+ $col: map.get(config.$palettes, primary, 80);
179
+ @include standard-chip-content-color-variant($col);
180
+ }
181
+
182
+ &.color-accent,
183
+ &[color='accent'] {
184
+ $col: map.get(config.$palettes, tertiary, 90);
185
+ @include standard-chip-content-color-variant($col);
186
+ }
187
+
188
+ &.color-warn,
189
+ &[color='warn'] {
190
+ $col: map.get(config.$palettes, error, 80);
191
+ @include standard-chip-content-color-variant($col);
192
+ }
193
+ }
169
194
  }
170
195
 
171
196
  @mixin chip-colors {