2024-09-26 01:05:18 +05:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: ["./index.html", "./src/**/*.{vue,ts,js}"],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
keyframes: {
|
|
|
|
"border-spin": {
|
|
|
|
"100%": {
|
|
|
|
transform: "rotate(-360deg)",
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"border-roll": {
|
|
|
|
"100%": {
|
|
|
|
"background-position": "200% 0",
|
|
|
|
}
|
2024-10-01 23:30:47 +05:00
|
|
|
},
|
|
|
|
"spin": {
|
|
|
|
"from": {
|
|
|
|
"transform": "rotate(0deg)",
|
|
|
|
},
|
|
|
|
"to": {
|
|
|
|
"transform": "rotate(360deg)",
|
|
|
|
}
|
2024-09-26 01:05:18 +05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
animation: {
|
|
|
|
"border-spin": "border-spin 7s linear infinite",
|
2024-10-01 23:30:47 +05:00
|
|
|
"border-roll": "border-roll 5s linear infinite",
|
|
|
|
"spin-slow": "spin 2s linear infinite",
|
2024-09-26 01:05:18 +05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require("@catppuccin/tailwindcss")({
|
|
|
|
prefix: "ctp",
|
|
|
|
defaultFlavour: "macchiato"
|
|
|
|
})
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
|