anycoder-873d13ec / tailwind.config.js
shimanta420's picture
Upload tailwind.config.js with huggingface_hub
aa03308 verified
raw
history blame contribute delete
345 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#3B82F6',
secondary: '#10B981',
dark: '#1F2937',
light: '#F9FAFB',
},
},
},
plugins: [],
}