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.

36 lines
887 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': 'optimizeSpeed',
  29. },
  30. },
  31. ['responsive', 'hover'] // Make this available for responsive and hover variants
  32. );
  33. },
  34. ],
  35. } satisfies Config;