Wedding Invitation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tailwind.config.js 931B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. darkMode: false,
  4. content: [
  5. "./resources/**/*.blade.php",
  6. "./resources/**/*.js",
  7. ],
  8. theme: {
  9. extend: {
  10. colors: {
  11. babyblue: '#e9f6fb',
  12. babybluesecond: '#DFF2F6',
  13. babybluedark: '#d2ebef',
  14. navbarcolor: '#5a5b5e',
  15. },
  16. fontFamily: {
  17. 'tan-pearl': ['Tan Pearl', 'sans-serif'],
  18. },
  19. keyframes: {
  20. fadeUp: {
  21. '0%': { opacity: 0, transform: 'translateY(20px)' },
  22. '100%': { opacity: 1, transform: 'translateY(0)' },
  23. },
  24. },
  25. animation: {
  26. fadeUp: 'fadeUp 0.5s ease-out forwards',
  27. },
  28. },
  29. screens: {
  30. 'sm': '640px',
  31. 'md': '768px',
  32. 'lg': '1024px',
  33. 'xl': '1280px',
  34. '2xl': '1536px',
  35. },
  36. },
  37. daisyui: {
  38. themes: ["light"],
  39. },
  40. plugins: [
  41. require('tailwindcss-animate'),
  42. ],
  43. }