Spaces:
Sleeping
Sleeping
| /** @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: [], | |
| } |