/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './src/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { extend: { colors: { // B1 品牌色板(与 docs/design/web-v1.1.0/style.css 对齐) brand: { bg: '#0B1020', bg2: '#0E1428', card: '#121831', card2: '#161D3C', purple: '#7C5CFF', 'purple-l': '#9B7BFF', 'purple-d': '#5C3DF0', green: '#00E5A0', 'green-l': '#5FF5C3', text: '#E8ECF8', muted: '#9AA3C0', gold: '#FFC24D', }, }, keyframes: { float: { '0%, 100%': { transform: 'translateY(0)' }, '50%': { transform: 'translateY(-10px)' }, }, 'fab-pulse': { '0%': { transform: 'scale(.85)', opacity: '1' }, '100%': { transform: 'scale(1.35)', opacity: '0' }, }, }, animation: { float: 'float 6s ease-in-out infinite', 'fab-pulse': 'fab-pulse 2.2s ease-out infinite', }, }, }, plugins: [], };