/* ------------------------------------------------------------------------- *
 * Custom color tuning for the CloudPress docs (Zensical "modern" theme).
 *
 * Overrides documented `--md-*` CSS custom properties — the SUPPORTED
 * customization layer. Used here because an arbitrary RGB background can't be
 * expressed with named-color config in zensical.toml. Prefer named colors in
 * config for anything that can be.
 * ------------------------------------------------------------------------- */

/* Dark mode (slate): a lighter dark-gray background than the modern default
   (which is a near-black hsl 5%-lightness). Page = rgb(30, 33, 41); elevated
   surfaces (header, code blocks, cards) step progressively lighter. */
[data-md-color-scheme="slate"] {
  --md-default-bg-color:           rgb(30, 33, 41);
  --md-default-bg-color--light:    rgb(37, 41, 50);
  --md-default-bg-color--lighter:  rgb(45, 50, 61);
  --md-default-bg-color--lightest: rgb(55, 61, 74);
}
