/* DanaDynamics brand tokens. Source of record: frontend/src/components/Themes/Themes.tsx (Skipper) and
   frontend/src/components/DDLogoWithText.tsx. Values marked "derived" are not in Skipper; see BRAND.md. */
:root {
  /* brand */
  --dd-blue: #0067B9;          /* primary: links, buttons, the mark */
  --dd-blue-dark: #004E8C;     /* derived: hover/active on blue */
  --dd-blue-tint: #E6F0F8;     /* derived: selected rows, info surfaces on light */

  /* neutrals, light */
  --dd-paper: #FFFFFF;
  --dd-mist: #F8F9FA;          /* light surface */
  --dd-line: #D9DEE3;          /* derived: borders on light */
  --dd-ink: #1C1E21;           /* body text on light */
  --dd-headline: #313C42;      /* headings on light */
  --dd-muted: #566068;         /* derived: secondary text on light (6.4:1 on paper) */

  /* neutrals, dark */
  --dd-navy: #25262C;          /* dark background */
  --dd-slate: #2F3139;         /* dark surface */
  --dd-slate-line: #3E414A;    /* derived: borders on dark */
  --dd-on-dark: #FFFFFF;
  --dd-on-dark-muted: #C9CDD2; /* derived: secondary text on dark (9.4:1 on navy) */

  /* signals */
  --dd-warning: #EFBD27;
  --dd-error: #E90303;
  --dd-success: #34C859;       /* on dark surfaces */
  --dd-success-text: #006D45;  /* on light surfaces */

  /* type */
  --dd-font: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --dd-font-mono: "B612 Mono", "SF Mono", Menlo, Consolas, monospace; /* instruments only */

  /* shape */
  --dd-radius: 4px;            /* MUI default in Skipper */
}
