Pulse/frontend-modern/tailwind.config.js
2025-10-11 23:29:47 +00:00

20 lines
No EOL
315 B
JavaScript

export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
gray: {
750: '#2d3748',
}
},
animation: {
'spin-slow': 'spin 2s linear infinite',
}
},
},
plugins: [],
}