UNPKG

create-hokage-js-app

Version:

🔥 Best CLI tool to create a MERN stack template. Quick, clean, and customizable.

26 lines (25 loc) • 624 B
/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { animation: { 'gradient': 'gradient 15s ease infinite', 'float': 'float 15s infinite ease-in-out', 'logo-spin': 'logo-spin 20s linear infinite', 'fade-in': 'fadeIn 0.5s ease-out', 'pulse-slow': 'pulse 2s infinite', }, keyframes: { gradient: { '0%, 100%': { backgroundPosition: '0% 50%' }, '50%': { backgroundPosition: '100% 50%' }, }, }, }, }, plugins: [], }