backsplash-app
Version:
An AI powered wallpaper app.
35 lines (34 loc) • 837 B
JavaScript
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
animation: {
"gradient-x": "gradient-x 3s ease infinite",
glow: "glow 2s ease-in-out infinite",
},
keyframes: {
"gradient-x": {
"0%, 100%": {
"background-position": "0% 50%",
},
"50%": {
"background-position": "100% 50%",
},
},
glow: {
"0%": {
"box-shadow": "0 0 10px rgba(147, 51, 234, 0.5)",
},
"50%": {
"box-shadow": "0 0 15px rgba(147, 51, 234, 0.6)",
},
"100%": {
"box-shadow": "0 0 10px rgba(147, 51, 234, 0.5)",
},
},
},
},
},
plugins: [],
};