/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{vue,ts,tsx}'], theme: { extend: { colors: { ink: '#0f172a', mist: '#f8fafc', ember: '#c2410c', lagoon: '#0f766e', haze: '#dbeafe', }, boxShadow: { float: '0 24px 60px rgba(15, 23, 42, 0.18)', }, fontFamily: { display: ['"Avenir Next"', '"PingFang SC"', 'sans-serif'], body: ['"IBM Plex Sans"', '"PingFang SC"', 'sans-serif'], }, }, }, plugins: [], }