import type { Config } from "tailwindcss"; const config: Config = { content: [ "./app/**/*.{ts,tsx}", "./lib/**/*.{ts,tsx}", ], theme: { extend: { colors: { bg: "#FAFAF7", ink: "#23303A", accent: "#3A6B7E", highlight: "#BC6B2E", muted: "#6E7F8C", border: "#ECEAE4", card: "#FCFBF8", }, fontFamily: { sans: ['"Helvetica Neue"', "Helvetica", "Arial", "sans-serif"], }, }, }, plugins: [], }; export default config;