/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{vue,js,ts}'], theme: { extend: { colors: { rose: { 50: '#fff1f2', 100: '#ffe4e6', 500: '#f43f5e', 600: '#e11d48', } }, fontFamily: { sans: ['"Noto Sans SC"', 'sans-serif'], }, }, }, plugins: [], }