import type { Config } from "tailwindcss"; const config: Config = { darkMode: ["class"], content: [ "./pages/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", "./app/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { colors: { primary: { DEFAULT: "#0E7490", foreground: "#FFFFFF", }, secondary: { DEFAULT: "#ECFCCB", foreground: "#0E7490", dark: "#1a3a2e", }, background: { DEFAULT: "#FAFAFA", dark: "#0f172a", }, foreground: { DEFAULT: "#1f2937", dark: "#f1f5f9", }, border: { DEFAULT: "#e5e7eb", dark: "#334155", }, }, borderRadius: { xl: "1rem", "2xl": "1.5rem", }, fontFamily: { sans: ["Inter", "system-ui", "sans-serif"], }, }, }, plugins: [], }; export default config;