2024-11-24 01:35:27 +00:00
|
|
|
import type { Config } from "tailwindcss";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
content: [
|
|
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
background: "var(--background)",
|
|
|
|
foreground: "var(--foreground)",
|
|
|
|
},
|
2024-12-12 14:12:57 +00:00
|
|
|
animation: {
|
|
|
|
"gradient-x": "gradient-x 5s ease infinite",
|
|
|
|
},
|
|
|
|
keyframes: {
|
|
|
|
"gradient-x": {
|
|
|
|
"0%": { "background-position": "0% 50%" },
|
|
|
|
"50%": { "background-position": "100% 50%" },
|
|
|
|
"100%": { "background-position": "0% 50%" },
|
|
|
|
},
|
|
|
|
},
|
2024-11-24 01:35:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
} satisfies Config;
|