/* theme-accent.css — Color de marca propio de PhosEcho (rose).
   Base compartida (tipografía, spacing, sidebar, botones) en
   theme-light.css + theme-dark.css + phos-shell.css, idéntica en toda la suite. */
:root {
  --accent: #e11d48;
  --accent-hover: #be123c;
  --accent-dim: rgba(225, 29, 72, .12);
  --teal: #e11d48;
  --teal-dim: rgba(225, 29, 72, .10);
  --sb-avatar-bg: #e11d48;
}
:root[data-theme="dark"] {
  --accent: #fb7185;
  --accent-hover: #fda4af;
  --accent-dim: rgba(251, 113, 133, .16);
  --teal: #fb7185;
  --teal-dim: rgba(251, 113, 133, .14);
  --sb-avatar-bg: #fb7185;
}
