/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}", ], theme: { extend: { colors: { primary: { DEFAULT: '#e93323', hover: '#d82819', light: '#fdebe9', dark: '#b71d10' }, secondary: { DEFAULT: '#ff7700', light: '#fff1e5' } }, maxWidth: { 'site': '1240px' } }, }, plugins: [], }