/**
 * @file
 * TS News black color scheme — black header bars, white masthead bar.
 *
 * Short form rather than the full override el-reno-blue.css and
 * kansas-pregame.css use: those predate color-base.css driving everything from
 * custom properties, so they restate every rule. Setting the properties is
 * enough now, as color-solid-white.css and the rest already do.
 *
 * Not listed in $light_color_schemes (NewsplusHooks::preprocessPage), so the
 * header bars get `colored-area` and their contents render light-on-dark —
 * white social icons, white menu links, light hover fills. That is what this
 * site previously had to force from its own subtheme's preprocess hook.
 */
:root {
  --color-primary: #000000;
  --color-primary-dark: #000000;
  --color-primary-light: #000000;
  --color-primary-rgb: 0, 0, 0;
  --color-primary-light-rgb: 0, 0, 0;
  --color-gray-lightest: #f3f3f3;
}

/* color-base.css paints #pre-header, #header-top and #breaking-news together
   from --color-primary-light, but the masthead lives in #header-top and is
   dark artwork on transparency — that one bar has to stay white. This file
   depends on color-base and so loads after it, winning the tie. */
#header-top {
  background-color: #ffffff;
}

/* Restated because .colored-area sets its contents white; an id selector
   outranks that class regardless of order. */
#header-top,
#header-top a {
  color: var(--color-primary);
}
