/* The site is light only.
 *
 * `color-scheme: light` is doing real work here rather than stating a default.
 * Without it a browser on a dark OS paints its own furniture dark -- form
 * controls, scrollbars, and the canvas behind the page before CSS arrives --
 * against a page that is committed to light. Declaring it keeps that furniture
 * in step with the palette.
 *
 * The light tokens themselves live where they are used: docs/docs.css for the
 * documentation pages, and each landing page's own <style> block.
 */
:root {
  color-scheme: light;
}
