Spaces:
Sleeping
Sleeping
| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./index.html", | |
| "./src/**/*.{js,ts,jsx,tsx}", | |
| ], | |
| darkMode: 'class', // Enable class-based dark mode | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'bio-green': '#16a34a', | |
| 'bio-blue': '#2563eb', | |
| 'bio-purple': '#9333ea', | |
| 'bio-orange': '#ea580c', | |
| 'bio-yellow': '#ca8a04', | |
| } | |
| }, | |
| }, | |
| plugins: [], | |
| } |