| 1234567891011121314151617181920212223242526272829303132 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- darkMode: 'class',
- content: [
- './src/**/*.{js,ts,jsx,tsx,mdx}',
- './components/**/*.{js,ts,jsx,tsx,mdx}',
- ],
- theme: {
- extend: {
- colors: {
- background: 'var(--background)',
- foreground: 'var(--foreground)',
- },
- animation: {
- 'spin-slow': 'spin 2s linear infinite',
- marquee: 'marquee 25s linear infinite',
- marquee2: 'marquee2 25s linear infinite',
- },
- keyframes: {
- marquee: {
- '0%': { transform: 'translateX(0%)' },
- '100%': { transform: 'translateX(-100%)' },
- },
- marquee2: {
- '0%': { transform: 'translateX(100%)' },
- '100%': { transform: 'translateX(0%)' },
- },
- },
- },
- },
- plugins: [],
- };
|