5th-site-expanded/tailwind.config.js
Satria ac5c8168b4
Some checks failed
Deploy to Cloudflare Workers / deploy (push) Failing after 28s
background animation and music
2026-03-19 12:21:18 +07:00

19 lines
No EOL
415 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
plugins: [require("@catppuccin/tailwindcss")({
defaultFlavour: 'mocha',
prefix: 'ctp',
})],
theme: {
extend: {
backgroundImage: {
'-gradient-6': 'linear-gradient(-6deg, var(--tw-gradient-stops))'
},
animation: {
},
keyframes: {
},
},
},
};