/* ============================================================
   SEMANTIC · color
   Source: Figma "Habito-Dashboard" — Semantic collection
   Aliases reference tokens/primitives.css via var() ONLY where the
   primitive name is known/certain; otherwise the hex is literal and
   the ink/green/red primitive it derives from is noted (the MCP did
   not expose those primitive names). Depends on primitives.css.
   ============================================================ */
:root{
  /* ---- text ---- */
  --color-text-primary:     #10190c;
  --color-text-secondary:   #80898b;
  --color-text-success:     #4ca155;
  --color-text-destructive: #cb3932;
  --color-text-disabled:    #10190c4d;   /* ink @ 30% */

  /* ---- background ---- */
  --color-bg-subtle:      #ffffff;
  --color-bg-surface:     #fafafa;
  --color-bg-default:     #f0f0f0;
  --color-bg-success:     #dbecdd;
  --color-bg-destructive: #fbeaeb;

  /* ---- button ---- */
  --color-button-primary:       var(--color-lime-100);   /* #cce756 */
  --color-button-secondary:     #f3f3f3;
  --color-button-focused:       #cce75680;               /* lime @ 50% */
  --color-button-pressed:       #a6bd45;                 /* darker lime (no primitive step exposed) */
  --color-button-disabled:      #f0f0f0;
  --color-button-text-primary:  #10190c;
  --color-button-text-focused:  #10190c;
  --color-button-text-pressed:  #10190c;
  --color-button-text-disabled: #10190c33;               /* ink @ 20% */

  /* ---- chart ---- */
  --color-chart-bar-lime:     var(--color-lime-100);       /* #cce756 */
  --color-chart-bar-teal:     var(--color-deep-teal-100);  /* #21494d */
  --color-chart-pie-orange:   var(--color-orange-100);     /* #cc7c2e */
  --color-chart-pie-charcoal: var(--color-charcoal-100);   /* #616776 */
  --color-chart-stroke:       #10190c1a;                   /* ink @ 10% */

  /* ---- category badge ----
     Promoted from raw primitives; each is a bg+text pair used by a
     category tag in the dashboard transaction table (grounded in
     Figma nodes 33:5077 / 33:5117 / 33:5087 / 33:5097). */
  --color-badge-payroll-bg:        var(--color-deep-teal-10);
  --color-badge-payroll-text:      var(--color-deep-teal-100);
  --color-badge-subscription-bg:   var(--color-lime-40);
  --color-badge-subscription-text: var(--color-deep-teal-100);
  --color-badge-rent-bg:           var(--color-orange-25);
  --color-badge-rent-text:         var(--color-orange-100);
  --color-badge-other-bg:          var(--color-charcoal-25);
  --color-badge-other-text:        var(--color-charcoal-100);
}
