ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
509 B

  1. /** @type {import('tailwindcss').Config} */
  2. import type { Config } from 'tailwindcss'
  3. export default {
  4. content: ['./index.html',
  5. './src/**/*.{js,ts,jsx,tsx}'],
  6. theme: {
  7. extend: {
  8. keyframes: {
  9. 'rainbow-scroll': {
  10. '0%': { backgroundPosition: '0% 50%' },
  11. '100%': { backgroundPosition: '200% 50%' },
  12. },
  13. },
  14. animation: {
  15. 'rainbow-scroll': 'rainbow-scroll .25s linear infinite',
  16. },
  17. }
  18. },
  19. plugins: [],
  20. } satisfies Config