BioNexus / client /tailwind.config.js
gaialive's picture
Upload 28 files
ad08f08 verified
/** @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: [],
}