anycoder-7a17f82e / tailwind.config.js
VortexHunter23's picture
Upload tailwind.config.js with huggingface_hub
f800daa verified
raw
history blame
436 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'brand-dark': '#0f172a',
'brand-accent': '#38bdf8',
'brand-glow': '#818cf8',
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
},
},
plugins: [],
}