mirror of
https://github.com/Xevion/dynamic-preauth.git
synced 2025-12-06 01:14:55 -06:00
27 lines
620 B
JavaScript
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")],
|
|
};
|