/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { brand: { primary: '#2563eb', // 科技蓝 - 主品牌色 secondary: '#7c3aed', // 科技紫 - 强调色 accent: '#06b6d4', // 青色 - 点缀色 dark: '#0f172a', // 深色背景 light: '#f8fafc', // 浅色背景 }, }, fontFamily: { sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'], mono: ['JetBrains Mono', 'monospace'], }, animation: { 'fade-in': 'fadeIn 0.5s ease-out', 'slide-up': 'slideUp 0.5s ease-out', 'slide-in-right': 'slideInRight 0.5s ease-out', }, keyframes: { fadeIn: { '0%': { opacity: '0' }, '100%': { opacity: '1' }, }, slideUp: { '0%': { transform: 'translateY(20px)', opacity: '0' }, '100%': { transform: 'translateY(0)', opacity: '1' }, }, slideInRight: { '0%': { transform: 'translateX(20px)', opacity: '0' }, '100%': { transform: 'translateX(0)', opacity: '1' }, }, }, }, }, plugins: [ require('@tailwindcss/typography'), ], }