/* PAS theme tokens.
 *
 * Seeded with CNAVWeb's exact palette so the two sites stay visually diffable
 * while the file manager is kept in sync. CNAVWeb hardcodes these values in
 * local.css AND in ~15 per-page `pageStyles` blocks; PAS keeps them here and
 * nowhere else, so rebranding is an edit to this one block.
 *
 * To rebrand PAS: change the --brand-* values. The --fm-* values below derive
 * from them by intent, so adjust those together if you move far from navy.
 */

:root {
    /* Brand */
    --brand-primary: #102a54;
    --brand-primary-hover: #1e4180;
    --brand-accent: #ffd700;
    --brand-accent-hover: #ffc700;
    --brand-muted: #666;
    --brand-warn: #ff8c00;
    --brand-divider: #9ec5fe;
    --brand-ink: #333;

    /* File manager. Referenced by filemanager.css, which is a SHARED file —
     * see docs/FILEMANAGER.md. Keeping the palette out of that stylesheet is
     * what lets CNAVWeb take it verbatim with its own values here. */
    --fm-surface: #fff;
    --fm-breadcrumb-bg: #f8f9fa;
    --fm-breadcrumb-sep: #999;
    --fm-row-hover: #eef2fa;
    --fm-border: #dee2e6;
    --fm-drop-border: #ccc;
    --fm-drop-text: #999;
    --fm-drop-active-bg: #dbe6f5;
    --fm-lock: var(--brand-warn);
    --fm-viewer-bg: #1a1a1a;
    --fm-viewer-ink: #eee;

    /* Typography */
    --brand-font: "Century Gothic", "CenturyGothic", AppleGothic, sans-serif;
}
