tailwind.config.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./index.html",
  5. "./src/**/*.{js,ts,jsx,tsx}",
  6. ],
  7. theme: {
  8. extend: {
  9. fontFamily: {
  10. serif: ['Times New Roman', 'Times', 'serif'],
  11. sans: ['Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif'],
  12. },
  13. colors: {
  14. vista: {
  15. black: '#1a1a1a',
  16. gold: '#c5a059',
  17. goldlight: '#e0c080',
  18. gray: '#F9F8F6',
  19. darkblue: '#0a1f35',
  20. teal: '#009ca6'
  21. }
  22. },
  23. animation: {
  24. 'fade-in-up': 'fadeInUp 1s ease-out',
  25. 'slow-zoom': 'slowZoom 20s linear infinite alternate',
  26. 'slide-in-right': 'slideInRight 0.3s ease-out'
  27. },
  28. keyframes: {
  29. fadeInUp: {
  30. '0%': { opacity: '0', transform: 'translateY(20px)' },
  31. '100%': { opacity: '1', transform: 'translateY(0)' },
  32. },
  33. slowZoom: {
  34. '0%': { transform: 'scale(1)' },
  35. '100%': { transform: 'scale(1.1)' },
  36. },
  37. slideInRight: {
  38. '0%': { transform: 'translateX(100%)' },
  39. '100%': { transform: 'translateX(0)' },
  40. }
  41. }
  42. },
  43. },
  44. plugins: [],
  45. }