wedding-platform / tailwind.config.ts
imeshuek's picture
Upload tailwind.config.ts
24fd142 verified
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
ivory: {
50: '#FEFDFB',
100: '#FDF8F0',
200: '#F9F0E1',
300: '#F2E4CC',
},
gold: {
50: '#FDF8ED',
100: '#F9EDCC',
200: '#F0D89C',
300: '#D4B06A',
400: '#C4A265',
500: '#A8873E',
600: '#8C6D2F',
},
sage: {
50: '#F4F7F4',
100: '#E5ECE5',
200: '#C9D9C9',
300: '#A3BFA3',
400: '#7DA37D',
500: '#5C8A5C',
600: '#4A6E4A',
},
rose: {
50: '#FDF2F4',
100: '#F9E0E5',
200: '#F3C1CB',
300: '#E89AAD',
400: '#D4738F',
500: '#B85A75',
600: '#96475E',
},
charcoal: {
50: '#F7F7F7',
100: '#E8E8E8',
200: '#D1D1D1',
300: '#A3A3A3',
400: '#6B6B6B',
500: '#4A4A4A',
600: '#2D2D2D',
700: '#1F1F1F',
},
},
fontFamily: {
heading: ['Playfair Display', 'Georgia', 'serif'],
body: ['Inter', 'sans-serif'],
},
boxShadow: {
'gold': '0 4px 16px -2px rgba(196,162,101,0.25)',
'rose': '0 4px 16px -2px rgba(184,90,117,0.2)',
'soft': '0 2px 8px -2px rgba(0,0,0,0.06)',
},
backgroundImage: {
'hero-gradient': 'linear-gradient(135deg, #FDF8F0 0%, #F9E0E5 50%, #E5ECE5 100%)',
},
},
},
plugins: [],
}
export default config