/** @type {import('tailwindcss').Config} */ export default { darkMode: 'class', content: [ "./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}", ], theme: { extend: { fontFamily: { sans: ['Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'sans-serif'], }, borderRadius: { '2xl': '1rem', '3xl': '1.5rem', }, boxShadow: { glass: '0 8px 32px rgba(0,0,0,0.08)', }, animation: { float: 'float 3s ease-in-out infinite', }, keyframes: { float: { '0%, 100%': { transform: 'translateY(0px)' }, '50%': { transform: 'translateY(-10px)' }, }, }, colors: { primary: { 50: '#fdf4ff', 100: '#fae8ff', 200: '#f5d0fe', 300: '#f0abfc', 400: '#e879f9', 500: '#d946ef', 600: '#c026d3', 700: '#a21caf', 800: '#86198f', 900: '#701a75', }, }, }, }, plugins: [], }