/*
 * The grey ramp, read out of mobalytics.gg's default (purple) theme.
 *
 * index.html and profile-view.css each carry their own copy of these values from before this
 * file existed; this is where they should converge, and nothing new should declare a fourth.
 * Only the ramp lives here — semantic aliases (--panel, --line, --accent) stay with the page
 * that decides what a panel is, because the admin tables and the profile cards do not agree.
 */
:root {
  color-scheme: dark;
  --gray-975: #0c091f;
  --gray-950: #171233; /* page background (--general-base-500) */
  --gray-900: #251f47; /* panels (--general-base-300) */
  --gray-800: #2d2752; /* raised surfaces, nav hover */
  --gray-700: #36305c;
  --gray-600: #3f3966; /* borders (--nav-border-color) */
  --gray-500: #494370;
  --gray-400: #544e7a;
  --gray-300: #797499;
  --gray-200: #a5a2b8; /* muted text that still has to be readable */
  --gray-100: #c7c5d6;
  --general-gold-200: #f2bf43;
}
