/*
 * Per-domain accents.
 *
 * One stylesheet, one template, one component set — a domain changes its accent colours 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.
 *
 * The hub uses the default palette in app.css (amber crown).
 */

/* Faucet domain: a cooler blue-green, so it reads as its own site at a glance. */
[data-theme="faucet"] {
    --accent: #4cc9f0;
    --accent-ink: #04141c;
    --accent-line: rgba(76, 201, 240, 0.3);
    --accent-soft: rgba(76, 201, 240, 0.1);
}

/* PTC/surf domain. */
[data-theme="surf"] {
    --accent: #b388ff;
    --accent-ink: #150a26;
    --accent-line: rgba(179, 136, 255, 0.3);
    --accent-soft: rgba(179, 136, 255, 0.1);
}

/* Mining domain. */
[data-theme="mining"] {
    --accent: #ffd166;
    --accent-ink: #1a1405;
    --accent-line: rgba(255, 209, 102, 0.3);
    --accent-soft: rgba(255, 209, 102, 0.1);
}
