tailwind.config.js
1 /** @type {import('tailwindcss').Config} */ 2 module.exports = { 3 content: ["./src/**/*.{js,jsx,ts,tsx}"], 4 darkMode: 'class', 5 theme: { 6 extend: { 7 colors: { 8 primary: { 9 50: '#f0f9ff', 10 100: '#e0f2fe', 11 500: '#0ea5e9', 12 600: '#0284c7', 13 700: '#0369a1', 14 }, 15 secondary: { 16 500: '#8b5cf6', 17 600: '#7c3aed', 18 }, 19 dark: { 20 700: '#374151', 21 800: '#1f2937', 22 900: '#111827', 23 } 24 }, 25 }, 26 }, 27 plugins: [], 28 }