28 lines
659 B
TypeScript
28 lines
659 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import { heroui } from "@heroui/theme";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
animation: {
|
|
"background-position-spin": "background-position-spin 3000ms infinite alternate",
|
|
},
|
|
keyframes: {
|
|
"background-position-spin": {
|
|
"0%": { backgroundPosition: "top center" },
|
|
"100%": { backgroundPosition: "bottom center" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
darkMode: "class",
|
|
plugins: [heroui()],
|
|
};
|
|
|
|
export default config;
|