/* Mirri brand colors — source of truth: MirriDiabetesDesignAssets/colors (extracted from the Mirri One iOS app MirriPalette). */
:root{
  /* Core */
  --mirri-brand:#633EFA;
  --mirri-green:#34C759;
  --mirri-blue:#007AFF;
  --mirri-yellow:#FFCC00;
  --mirri-red:#FF3B30;
  /* Accents */
  --mirri-orange:#FF9500;
  --mirri-pink:#FF2D55;
  --mirri-purple:#AF52DE;
  /* Neutrals — light theme */
  --bg:#ECE8F4;
  --surface:#F7F5FB;
  --text:#000000;
  /* Derived neutrals (not in source palette; alpha-derived from --text) */
  --text-secondary:rgba(0,0,0,0.62);
  --text-muted:rgba(0,0,0,0.45);
  --border-hairline:rgba(0,0,0,0.08);
  --brand-tint:rgba(99,62,250,0.10);
  /* Semantic aliases */
  --accent:var(--mirri-brand);
  --success:var(--mirri-green);
  --info:var(--mirri-blue);
  --warning:var(--mirri-orange);
  --danger:var(--mirri-red);
  --streak-today:var(--mirri-yellow);
  --streak-active:var(--mirri-orange);
  --link:var(--mirri-blue);
}
[data-theme="dark"]{
  --bg:#1F1D31;
  --surface:#39364F;
  --text:#FFFFFF;
  --text-secondary:rgba(255,255,255,0.72);
  --text-muted:rgba(255,255,255,0.50);
  --border-hairline:rgba(255,255,255,0.08);
  --brand-tint:rgba(99,62,250,0.24);
  --link:#8F7DFF;
}
