Files
gander/frontend/tailwind.config.js
evan e0d748ed06 UPDATE: Added Hover Gradient Animation Effect on Logo.
Could be referenced for future use.
Usage of tailwind.config.js
2025-01-27 04:21:12 +00:00

27 lines
568 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
keyframes: {
agog: {
"0%": { backgroundPosition: "0% 50%" },
"100%": { backgroundPosition: "100% 50%" },
},
},
animation: {
agog: "agog 6s linear infinite",
},
backgroundImage: {
agog: "linear-gradient(to right, #60A5FA, #8B5CF6, #EC4899, #FACC15,#60A5FA, #8B5CF6, #EC4899, #FACC15)",
},
},
},
plugins: [
],
};