// Tailwind config — opts into the @sp-ui-kit/tokens preset (same as PressV). // // This SPA uses Tailwind v4's CSS-first @theme directive in src/style.css for // its OWN tokens (flow/order colours, HMI breakpoints). This file is ADDITIVE — // it pulls in the sp-ui-kit token surface (primary scale, surface levels, // status colours, nav vars, density-aware spacing) so `surface-1`, `ink`, // `line`, `danger`, `hmi-sm:` etc. resolve identically to the rest of the fleet. // Tailwind v4 auto-discovers this file; no @config directive needed in the CSS. // // .cjs because package.json is "type": "module" — keeps require() available. /** @type {import('tailwindcss').Config} */ module.exports = { presets: [require('@sp-ui-kit/tokens/tailwind-preset')], }