@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/dist/index.js CHANGED
@@ -2363,7 +2363,12 @@ function PricingSection({
2363
2363
  ),
2364
2364
  children: [
2365
2365
  entry.label,
2366
- saveBadges[entry.key] && /* @__PURE__ */ jsx(Badge$1, { variant: "secondary", className: "text-xs", children: saveBadges[entry.key] })
2366
+ saveBadges[entry.key] && // `default` (primary), not `secondary`: the toggle is
2367
+ // `bg-muted` with a `bg-background` active tab, and a
2368
+ // secondary badge is the same grey as both — the
2369
+ // saving is the incentive, so it has to carry brand
2370
+ // colour to read at all.
2371
+ /* @__PURE__ */ jsx(Badge$1, { variant: "default", className: "text-xs", children: saveBadges[entry.key] })
2367
2372
  ]
2368
2373
  },
2369
2374
  entry.key
@@ -2393,7 +2398,7 @@ function PricingSection({
2393
2398
  ),
2394
2399
  children: [
2395
2400
  "Annual",
2396
- saveBadge && /* @__PURE__ */ jsx(Badge$1, { variant: "secondary", className: "text-xs", children: saveBadge })
2401
+ saveBadge && /* @__PURE__ */ jsx(Badge$1, { variant: "default", className: "text-xs", children: saveBadge })
2397
2402
  ]
2398
2403
  }
2399
2404
  )