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.

39 lines
1013 B

  1. import type { Config } from "tailwindcss";
  2. export default {
  3. content: [
  4. "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
  5. "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
  6. "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
  7. ],
  8. theme: {
  9. extend: {
  10. boxShadow: {
  11. 'header': '2px -10px 129px 35px #F4846F',
  12. 'inner-header': '2px -20px 15px 30px rgba(244,132,111,1);',
  13. },
  14. fontFamily: {
  15. Calibri: ["Calibri"],
  16. },
  17. colors: {
  18. background: "var(--background)",
  19. foreground: "var(--foreground)",
  20. },
  21. },
  22. },
  23. plugins: [
  24. function ({ addUtilities }) {
  25. addUtilities(
  26. {
  27. '.text-rendering-optimize-speed': {
  28. 'text-rendering': 'geometricPrecision',
  29. },
  30. '.no-ligatures': {
  31. 'font-variant-ligatures': 'none', // Add this utility
  32. },
  33. },
  34. ['responsive', 'hover'] // Ensure this utility is available for responsive and hover variants
  35. );
  36. },
  37. ],
  38. } satisfies Config;