| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./index.html", | |
| "./src/**/*.{js,ts,jsx,tsx}", | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'vchat-bg': '#0f172a', | |
| 'vchat-panel': '#1e293b', | |
| 'vchat-accent': '#6366f1', | |
| }, | |
| animation: { | |
| 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite', | |
| } | |
| }, | |
| }, | |
| plugins: [], | |
| } |