| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: [
- "./index.html",
- "./src/**/*.{js,ts,jsx,tsx}",
- ],
- theme: {
- extend: {
- fontFamily: {
- serif: ['Times New Roman', 'Times', 'serif'],
- sans: ['Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif'],
- },
- colors: {
- vista: {
- black: '#1a1a1a',
- gold: '#c5a059',
- goldlight: '#e0c080',
- gray: '#F9F8F6',
- darkblue: '#0a1f35',
- teal: '#009ca6'
- }
- },
- animation: {
- 'fade-in-up': 'fadeInUp 1s ease-out',
- 'slow-zoom': 'slowZoom 20s linear infinite alternate',
- 'slide-in-right': 'slideInRight 0.3s ease-out'
- },
- keyframes: {
- fadeInUp: {
- '0%': { opacity: '0', transform: 'translateY(20px)' },
- '100%': { opacity: '1', transform: 'translateY(0)' },
- },
- slowZoom: {
- '0%': { transform: 'scale(1)' },
- '100%': { transform: 'scale(1.1)' },
- },
- slideInRight: {
- '0%': { transform: 'translateX(100%)' },
- '100%': { transform: 'translateX(0)' },
- }
- }
- },
- },
- plugins: [],
- }
|