File size: 425 Bytes
e4c6a7c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/** @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: [],
}