BioNexus / tailwind.config.js
gaialive's picture
Upload 27 files
e4c6a7c verified
raw
history blame contribute delete
425 Bytes
/** @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: [],
}