@olwiba/ui 0.2.9 → 0.2.10

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": "@olwiba/ui",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -229,7 +229,12 @@ export function PricingSection({
229
229
  >
230
230
  {entry.label}
231
231
  {saveBadges[entry.key] && (
232
- <Badge variant="secondary" className="text-xs">
232
+ // `default` (primary), not `secondary`: the toggle is
233
+ // `bg-muted` with a `bg-background` active tab, and a
234
+ // secondary badge is the same grey as both — the
235
+ // saving is the incentive, so it has to carry brand
236
+ // colour to read at all.
237
+ <Badge variant="default" className="text-xs">
233
238
  {saveBadges[entry.key]}
234
239
  </Badge>
235
240
  )}
@@ -259,7 +264,7 @@ export function PricingSection({
259
264
  >
260
265
  Annual
261
266
  {saveBadge && (
262
- <Badge variant="secondary" className="text-xs">{saveBadge}</Badge>
267
+ <Badge variant="default" className="text-xs">{saveBadge}</Badge>
263
268
  )}
264
269
  </Button>
265
270
  </>