/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { fontFamily: { sans: ['Inter', 'sans-serif'], }, colors: { 'sky-light': '#E0F7FA', 'sky-dark': '#81D4FA', gold: { 50: '#FFFEF7', 100: '#FFF9E6', 200: '#FFE87C', 300: '#F4D345', 400: '#D4AF37', 500: '#C19A2E', 600: '#A67C1B', 700: '#8B6914', 800: '#6B4E0D', 900: '#4A3508', }, }, backgroundImage: { 'sky-gradient': 'linear-gradient(135deg, #E0F7FA 0%, #81D4FA 100%)', 'gradient-radial': 'radial-gradient(circle, var(--tw-gradient-stops))', } }, }, plugins: [], }