/* ===========================================================================
   Intercom theme  --  

   Copy this file into the directory you mount over /app/public/custom, named
   theme.css, and restart the container. See ../branding.md.

   Matching logo: https://intercom.it/images/logo-intercom.svg  (wordmark,
   viewBox 557.6 x 121.3, purple #544292 + pink #e4156c -- note that pink is
   NOT the --i-pink below, so it will not match --theme-accent exactly). Save
   it into the same mount directory and set BRAND_LOCAL_LOGO=/custom/logo.svg;
   it cannot be hotlinked, the CSP only allows same-origin images.

   Colours taken from the live intercom.it stylesheets, which declare their
   brand palette explicitly:

       --i-blue: #25305e    footer, announcement bar, body text, nav links
       --i-pink: #d60e64    primary buttons, links, timeline accents
       --i-red:  #e40017    declared but unused on the site
       #8bae45              "green energy" green (Bootstrap success)
       #ededed              light section background
       #ab0b50              link hover (darker pink)

   It loads after /css/theme.css, so the four tokens below win and everything
   else keeps deriving from them. Remove the file to go back to stock.
   =========================================================================== */

:root {
  /* i-blue. Their only large colour fields (footer, announcement bar) are this
     navy, so it takes the panel headers and primary buttons. */
  --theme-primary: #25305e;

  /* i-pink -- the signature colour. Lands on alerts, accent icons, link hover
     and invalid-field rings. */
  --theme-accent: #d60e64;

  /* Their --bs-light, used for alternating sections. */
  --theme-page: #ededed;

  /* Their --bs-body-color really is navy, not grey -- a big part of the look. */
  --theme-ink: #25305e;
}

/* ---------------------------------------------------------------------------
   Bolder variant: their buttons and links are pink, not navy. Swapping the two
   puts pink on the panel headers and primary buttons instead. Uncomment to
   compare.

:root {
  --theme-primary: #d60e64;
  --theme-accent:  #25305e;
}
   --------------------------------------------------------------------------- */
