RythonDev/tailwind.config.cjs
2023-10-05 19:14:57 +08:00

25 lines
718 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
keyframes: {
gradient: {
"0%": {
"background-position": "0% 50%",
},
"50%": {
"background-position": "100% 50%",
},
"100%": {
"background-position": "0% 50%",
},
},
},
animation: {
gradient: "gradient 15s ease infinite",
},
},
},
plugins: [],
};