/* The studio's own band tint, scoped to .theme-studio.
 *
 * Never :root — the same rule shell.css states for Simple's, and for the same
 * reason: the moment a product band sits on this page again, the two have to be
 * able to differ without either giving ground.
 *
 * WHY THIS FILE EXISTS. The home page's alternation is canvas, band, canvas —
 * beige, blue, beige. The blue came from .theme-simple, because the band it
 * tinted was Simple's. With the product band gone while the site launches as a
 * studio page, that alternation would have been lost, or kept by putting
 * Simple's identity on a band that is not Simple's. Neither is right, so the
 * studio has its own.
 *
 * THE VALUE IS THE SAME AS SIMPLE'S TODAY, deliberately: it is the blue that is
 * already on the page, and the Owner asked for that alternation to survive. It
 * is measured, not inherited — muted body text (#68717C) on #F2F5F8 is 4.52:1,
 * which clears AA at 4.5. shell.css records that #EEF2F5 was rejected at 4.40,
 * and that check was re-run here rather than trusted.
 *
 * ⚠ WHEN THE PRODUCT BAND RETURNS, these two must stop being identical. Two
 * bands of the same tint stacked on one page stop telling the reader anything,
 * which is the whole job of the tint. That decision belongs to whoever restores
 * it, and this note is here so it is a decision rather than an oversight.
 */

.theme-studio {
  --band:      #F2F5F8;
  --band-line: #DDE1E5;
}

@media (prefers-color-scheme: dark) {
  .theme-studio {
    --band:      #16202A;
    --band-line: #30363D;
  }
}
