/* eyelashglasses.com - design tokens
   One brand, three worlds. World themes repaint via a body class. */
:root{
  color-scheme: light;

  /* type */
  --disp:'Pirata One', serif;
  --body:'Space Grotesk', sans-serif;
  --mono:'IBM Plex Mono', monospace;

  /* tier colors (world-independent: the rating never changes costume) */
  --tier-whisper:#a9c4a0;
  --tier-flutter:#9d7bd8;
  --tier-swoop:#c2405e;

  /* default world: NIGHT (goth/alt) */
  --bg:#171021;
  --panel:#1f1730;
  --line:#2a1f3d;
  --text:#f0e9dc;
  --dim:#b7ac9f;
  --accent:#c2405e;   /* oxblood */
  --accent2:#9d7bd8;  /* violet */
}

body.world-glam{
  --bg:#1a130c;
  --panel:#241a10;
  --line:#382a18;
  --text:#f5ead6;
  --dim:#c2ab8a;
  --accent:#d4a94e;   /* gold */
  --accent2:#e0797f;  /* rose */
}

body.world-stage{
  --bg:#0e1220;
  --panel:#161c30;
  --line:#232c48;
  --text:#eef0f8;
  --dim:#9aa3c0;
  --accent:#e84c8b;   /* stage magenta */
  --accent2:#5ad0e6;  /* rig cyan */
}
