/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
extend: {
colors: {
'desert-sand': '#F5E6D3',
'terracotta': '#C2724F',
'deep-indigo': '#1B2A4A',
'sage': '#8B9F82',
'mountain-shadow': '#6B5B5B',
'warm-white': '#FAF7F2',
'dusty-rose': '#D4A0A0',
},
fontFamily: {
'display': ['"Playfair Display"', 'Georgia', 'serif'],
'body': ['"Source Sans 3"', 'system-ui', 'sans-serif'],
'mono': ['"Space Mono"', 'monospace'],
'quote': ['Lora', 'Georgia', 'serif'],
},
fontSize: {
'display-1': ['3.052rem', {
lineHeight: '1.1',
letterSpacing: '-0.02em',
fontWeight: '700',
}],
'display-2': ['2.441rem', {
lineHeight: '1.15',
letterSpacing: '-0.02em',
fontWeight: '700',
}],
'display-3': ['1.953rem', {
lineHeight: '1.2',
letterSpacing: '-0.01em',
fontWeight: '700',
}],
'display-4': ['1.563rem', {
lineHeight: '1.25',
fontWeight: '700',
}],
'heading-5': ['1.25rem', {
lineHeight: '1.3',
fontWeight: '600',
}],
'heading-6': ['0.8rem', {
lineHeight: '1.4',
letterSpacing: '0.1em',
fontWeight: '600',
}],
'body': ['1rem', {
lineHeight: '1.7',
fontWeight: '400',
}],
'small': ['0.8rem', {
lineHeight: '1.6',
fontWeight: '400',
}],
'caption': ['0.625rem', {
lineHeight: '1.5',
letterSpacing: '0.05em',
fontWeight: '400',
}],
},
},
},
}