Files
dynamic-preauth/frontend/tailwind.config.mjs
2025-01-02 13:33:40 -06:00

27 lines
620 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,ts,tsx}"],
theme: {
extend: {
animation: {
"pulse-dark": "pulse-dark 2.5s ease-in-out infinite",
},
keyframes: {
"pulse-dark": {
"0%, 100%": {
backgroundColor: "#0A3026",
},
"50%": {
backgroundColor: "#053B2D",
},
},
},
fontFamily: {
bebas: ["Bebas Neue", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
},
},
plugins: [require("@tailwindcss/typography")],
};