/* Blink Image — shared brand tokens.
 *
 * The single source of truth for how Blink Image's internal tools look. BIPI 2
 * should use this same file rather than reinventing a palette, so the tools feel
 * like one system rather than three separate projects.
 *
 * The amber is Pantone 124C, sampled from the logo artwork in
 * Y:\Shared drives\ADMIN\Branding\Logo — measured, not guessed from a
 * screenshot. The logo is amber and black on white; these tools invert that to a
 * dark interface with amber as the single accent, which keeps long working
 * sessions easy on the eye while staying recognisably Blink.
 *
 * One rule worth keeping: amber means "primary action, or where you are".
 * It is deliberately not used for status — if it means three things it means
 * nothing.
 */

:root {
  /* ── Brand ──────────────────────────────────────────────────────── */
  --blink-amber: #E6B122;         /* Pantone 124C, sampled from the logo */
  --blink-amber-hover: #F0BF3D;
  --blink-black: #000000;

  /* ── Interface neutrals ─────────────────────────────────────────── */
  --bg: #10151b;                  /* page */
  --panel: #171e26;               /* cards, tables, header */
  --line: #28323e;                /* borders */
  --text: #e9edf2;
  --muted: #a2b0be;
  --dim: #6d7c8c;

  /* ── Accent ─────────────────────────────────────────────────────── */
  --accent: var(--blink-amber);
  --accent-hover: var(--blink-amber-hover);
  --accent-ink: #1a1205;          /* text on amber — near-black, echoing the
                                     wordmark rather than a flat grey */

  /* ── Status. Not amber, so the accent keeps its meaning ─────────── */
  --ok: #3fa46a;
  --warn: #7f8cff;                /* "awaiting" reads as blue, not brand amber */
  --bad: #e05252;
}
