/*
 * The Conversatron — the `aquaui` theme.
 *
 * "Think Conversatron": every entry is an Aqua window, title bar and all. 38 archive pages,
 * which for a theme nobody could reach except by choosing it in their settings is a lot of
 * deliberate choosing.
 *
 * The chrome is `EntryChrome.Aqua` — see base.css, where the title bar and bottom cap are
 * assembled from the same GIFs `aquaui.xml` nested tables around.
 *
 * Not ported:
 *   - `entrytitlebg` (#5e95c0). Defined, but the title bar is made of images, so nothing
 *     ever painted with it.
 *   - `entrynormbg` / `entryangrybg` / `entryhappybg` / `entrysadbg` / `askercolor`, the
 *     previous generation of key names, which the 2005 engine had stopped reading.
 *   - `indexoutercolor` / `evenindexcolor` / `oddindexcolor`. `aquaui.xml`'s thread rows ask
 *     for `{indexcolor}`, which the engine never set under any name, so the front page had
 *     no row banding at all. Reproduced below as `transparent`.
 */

[data-theme="aquaui"] {
    --body-bg: #ffffff;
    --body-bg-image: none;
    --body-text: #000000;
    --link: #000099;
    --link-active: #000099;
    --link-visited: #000033;

    /* See the note above: `{indexcolor}` was never set, so there was nothing to band with. */
    --home-table-color: transparent;
    --home-odd-color: transparent;
    --home-even-color: transparent;

    /*
     * The title bar is an image, so the strip itself is unpainted and the name is the
     * black-on-grey the bar was drawn to carry.
     */
    --entry-title-bg: transparent;
    --entry-name-askee: #000000;
    --entry-name-asker: #000000;

    /*
     * All four moods are white. `default.py` falls back to #ffffff when `entry_normal` is
     * missing, and every one of aquaui's mood keys is spelled the dead way — so an angry
     * askee and a happy one were the same white window. Faithful, not a gap.
     */
    --entry-neutral: #ffffff;
    --entry-happy: #ffffff;
    --entry-angry: #ffffff;
    --entry-sad: #ffffff;

    /* `default.py`'s hardcoded fallback, for a theme that defined no ghost colours. */
    --entry-ghost-bg: #cccccc;
    --entry-ghost-text: #333333;
    --entry-ghost-link: #000099;

    --doc-banner-bg: #000000;
    --doc-banner-text: #ffffff;

    /* ----- The window chrome ----- */

    --aqua-title-left: url("/img/aquaui/title-left.gif");
    --aqua-title-right: url("/img/aquaui/title-right.gif");
    --aqua-title-fill: url("/img/aquaui/title-bg.gif");
    --aqua-title-icon: url("/img/aquaui/title-icon.gif");

    --aqua-shadow-left: url("/img/aquaui/body-leftshadow.gif");
    --aqua-shadow-right: url("/img/aquaui/body-rightshadow.gif");

    --aqua-bottom-left: url("/img/aquaui/bottom-left.gif");
    --aqua-bottom-right: url("/img/aquaui/bottom-right.gif");
    --aqua-bottom-fill: url("/img/aquaui/bottom-shadow.gif");
}
