anycoder-e727bf25 / tailwind.config.js
mohammadSaber26's picture
Upload tailwind.config.js with huggingface_hub
1bcd9dc verified
/** @type {import('tailwindcss').Config} */
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: '#0d6efd',
secondary: '#198754',
danger: '#dc3545',
},
},
},
plugins: [],
}