Files
lcepl-frontend/tailwind.config.js

23 lines
417 B
JavaScript
Raw Normal View History

2025-12-25 18:00:33 +05:30
// 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: [],
};