anycoder-6340ea4c / tailwind.config.js
Dariky's picture
Upload tailwind.config.js with huggingface_hub
4e74fa5 verified
raw
history blame contribute delete
323 Bytes
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary: '#3b82f6',
secondary: '#10b981',
accent: '#f59e0b',
},
},
},
plugins: [],
}