/*
 * Per-domain accents — the "Atelier" palette.
 *
 * One stylesheet, one template, one component set. A domain changes its accent colour and nothing
 * else. That is deliberate: five hand-built themes is how the legacy ended up with five slightly
 * different claim screens, and how a fix on one domain never reached the others.
 *
 * Each accent is the hub terracotta shifted in hue, and every one is checked for contrast against the
 * three surfaces it appears on (--paper, --surface, --paper-2) and against the button's cream text.
 * The palette is warm paper — a dark-accent theme from the previous system would be unreadable here.
 *
 * Hub (faucetdynasty.com) uses the default tokens in app.css: terracotta.
 */

/* Toonhwa — the faucet claim domain. A cooler teal so it reads as its own site at a glance,
   and so the claim button is not the same colour as the hub's links. */
[data-theme="faucet"] {
    --accent: #1c6b62;        /* 5.9:1 on paper */
    --accent-2: #14534c;
    --accent-line: #b6d4ce;
    --accent-soft: #e6f0ed;
}

/* HostSplash — the paid-to-view domain. A deeper indigo, which is as far from the hub
   terracotta as a warm palette allows while staying legible. */
[data-theme="surf"] {
    --accent: #3c5aa6;
    --accent-2: #2d4482;
    --accent-line: #c0cbe4;
    --accent-soft: #eaeefa;
}

/* Reserved for a future mining domain. Kept in the catalogue so the registry is honest about
   what the module set allows, but no live domain uses it. */
[data-theme="mining"] {
    --accent: #8a6d2f;
    --accent-2: #6d5524;
    --accent-line: #e2d3a8;
    --accent-soft: #f6efdd;
}
