/* Blue Door Holistic Counselling
 * ---------------------------------------------------------------------------
 * Both variables are blue. The coral the template shipped is kept, but it is
 * applied deliberately in blue-door.css instead of through these variables.
 *
 * The reason is contrast. Calmind ships #eaa68b as its primary colour, and the
 * stylesheet puts that behind white text in 128 places. White on #eaa68b is
 * 2.03:1, where WCAG asks for 4.5:1 on body text - so the template's buttons
 * and panels were close to unreadable before we touched them. Handing coral to
 * a variable used for 48 backgrounds and 6 text colours would keep that fault.
 *
 * These blues are measured, not guessed:
 *   #144C73  9.09:1 against white, and white 9.09:1 against it
 *   #1A5C88  7.17:1 both ways
 * Either direction passes, which matters because the template uses the primary
 * colour for text on white AND as a background for white text.
 */
:root {
  --primary-color: #144C73;
  --primary-color-rgb: 20, 76, 115;
  --secondary-color: #1A5C88;
  --secondary-color-rgb: 26, 92, 136;

  /* Applied by hand, never behind text. 2.03:1 on white. */
  --accent-coral: #EAA68B;
  --accent-coral-rgb: 234, 166, 139;
}
