/* /surname/curry.
 *
 * Black page, red ribbon. See theme/name/dolly.css for why the selector is
 * :root[data-hv-theme] and why a theme sets nothing but variables.
 *
 * This one forces the dark palette on, so it needs the whole dark set and
 * not just the two colours that change: a reader in light mode who got only
 * --hv-bg would end up with light-mode panels and borders on a black page.
 */
:root[data-hv-theme] {
  --hv-bg: #000000;
  --hv-ink: #f2f2f2;
  --hv-panel: #121212;      /* lifted off pure black so panels stay visible */
  --hv-ink-soft: #a8a8a8;
  --hv-line: #333333;
  --hv-link: #ff8a8a;       /* 8.9:1 on black; #C50000 itself is 3.4:1 and
                               would be unreadable as body link text */

  /* White on #C50000 is 6.22:1 and passes; black on it is 3.37:1 and does
     not, so the lettering here is white - the opposite of the Dolly ribbon,
     for the same reason. */
  --hv-ribbon: #C50000;
  --hv-ribbon-ink: #ffffff;
  --hv-ribbon-link: #ffffff;

  /* White inside the search box, matching the Dolly theme. It cannot come
     from --hv-bg here: this page background is black, and the default would
     put a black pill in the middle of the red band. Black on white is 21:1,
     and the placeholder and border are #A70000 (7.95:1 on white) so the
     field still reads as part of the ribbon. */
  --hv-ribbon-field: #FFFFFF;
  --hv-ribbon-field-ink: #000000;
  --hv-ribbon-field-soft: #A70000;
  --hv-ribbon-field-line: #A70000;
  --hv-ribbon-btn: #A70000;
  --hv-ribbon-btn-ink: #FFFFFF;

  --hv-f: #e07ac4;
  --hv-m: #5aa9dd;
  --hv-c1: #5aa9dd;
  --hv-c2: #e07ac4;
  --hv-c3: #5cc08c;
  --hv-c4: #dda13f;
}
