anycoder-32591c7b / tailwind.config.js
hasanalrobasi's picture
Upload tailwind.config.js with huggingface_hub
ba2f950 verified
raw
history blame contribute delete
351 Bytes
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
500: '#6366f1',
600: '#4f46e5',
},
dark: {
800: '#1e293b',
900: '#0f172a',
}
}
},
},
plugins: [],
}