/* =============================================================================
   PM-scoped tokens — DERIVED from the rose-gold design system.
   Single source of truth: app/assets/stylesheets/_design_tokens.css.

   No hardcoded palette and no separate `.dark` theme here: every value
   references a `--color-*` token, so chips flip correctly via [data-theme]
   automatically. (Previously this file carried a blue `--pm-chip-*` palette
   + a `.dark` override block + dead `.pm-cards-*` !important hacks from an
   earlier design generation — all removed.)
   ============================================================================= */

:root {
  /* Filter chips — saved-filters dropdown, kanban filters, _filter_chip.
     Active = solid accent (concept `.fchip.on`); inactive = muted surface. */
  --pm-chip-bg-inactive:   var(--color-bg-muted);
  --pm-chip-bg-active:      var(--color-accent);
  --pm-chip-text-inactive:  var(--color-fg-muted);
  --pm-chip-text-active:    var(--color-accent-on);
  --pm-chip-border-active:  var(--color-accent);
}
