/** @type {import('tailwindcss').Config} */ export default { content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"], theme: { extend: { colors: { // One palette for the whole railway: the green is sampled from the // official logo, the dark inks and light surfaces come from the // freight portal so the two public surfaces read as one brand. edr: { ink: "#0c1a2b", "ink-2": "#10202f", primary: "#008550", "primary-dark": "#006b41", light: "#34d399", amber: "#f2a516", surface: "#f7fafc", border: "#e6ecf2", muted: "#6b7c8e", }, }, fontFamily: { sans: [ '"Plus Jakarta Sans"', "ui-sans-serif", "system-ui", "-apple-system", "Segoe UI", "Roboto", "sans-serif", ], }, }, }, plugins: [], };