/** @type {import('tailwindcss').Config} */ export default { content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"], theme: { extend: { colors: { // Palette lifted from the freight landing page so the two public // surfaces read as one railway. edr: { ink: "#0c1a2b", "ink-2": "#10202f", primary: "#0a8a5f", "primary-dark": "#087049", light: "#34d399", amber: "#f2a516", }, }, fontFamily: { sans: ["Inter", "ui-sans-serif", "system-ui", "sans-serif"], }, }, }, plugins: [], };