An animated gradient background which transitions between colors for text.
Add the following animations to your tailwind.config.js file:
extend: {
animation: {
gradient: "gradient 8s linear infinite",
},
keyframes: {
gradient: {
to: {
backgroundPosition: "var(--bg-size) 0",
},
},
},