const { hairlineWidth } = require("nativewind/theme"); /** @type {import('tailwindcss').Config} */ module.exports = { darkMode: "class", content: [ "./App.tsx", "./index.ts", "./components/**/*.{js,jsx,ts,tsx}", "./app/**/*.{js,jsx,ts,tsx}", ], presets: [require("nativewind/preset")], theme: { extend: { fontFamily: { sans: ['DMSans-Regular', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'], }, colors: { border: "rgba(var(--border), )", input: "rgba(var(--input), )", ring: "rgba(var(--ring), )", background: "rgba(var(--background), )", foreground: "rgba(var(--foreground), )", primary: { DEFAULT: "rgba(var(--primary), )", foreground: "rgba(var(--primary-foreground), )", }, secondary: { DEFAULT: "rgba(var(--secondary), )", foreground: "rgba(var(--secondary-foreground), )", }, destructive: { DEFAULT: "rgba(var(--destructive), )", foreground: "rgba(var(--destructive-foreground), )", }, muted: { DEFAULT: "rgba(var(--muted), )", foreground: "rgba(var(--muted-foreground), )", }, accent: { DEFAULT: "rgba(var(--accent), )", foreground: "rgba(var(--accent-foreground), )", }, popover: { DEFAULT: "rgba(var(--popover), )", foreground: "rgba(var(--popover-foreground), )", }, card: { DEFAULT: "rgba(var(--card), )", foreground: "rgba(var(--card-foreground), )", }, }, borderRadius: { lg: "var(--radius)", md: "calc(var(--radius) - 2px)", sm: "calc(var(--radius) - 4px)", }, borderWidth: { hairline: hairlineWidth(), }, keyframes: { "accordion-down": { from: { height: "0" }, to: { height: "var(--radix-accordion-content-height)" }, }, "accordion-up": { from: { height: "var(--radix-accordion-content-height)" }, to: { height: "0" }, }, }, animation: { "accordion-down": "accordion-down 0.2s ease-out", "accordion-up": "accordion-up 0.2s ease-out", }, }, }, future: { hoverOnlyWhenSupported: true, }, plugins: [require("tailwindcss-animate")], };