/** @type {import('tailwindcss').Config} */ export default { content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], theme: { extend: { colors: { primary: { DEFAULT: "#3B82F6", dark: "#2563EB", light: "#60A5FA", }, secondary: "#F8FAFC", }, fontFamily: { sans: ["Pretendard", "Inter", "sans-serif"], }, }, }, plugins: [], };