// tailwind.config.js module.exports = { content: [ "./src/**/*.{js,jsx,ts,tsx}", // Make sure this path is accurate ], theme: { extend: { fontFamily: { sans: ['Poppins', 'sans-serif'], }, colors: { lcepl: { blue: '#1E3A8A', gray: '#374151', orange: '#F97316', light: '#F9FAFB', }, }, }, }, plugins: [], };