File size: 684 Bytes
485813e
 
 
 
 
 
 
 
21c8704
485813e
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/** @type {import('tailwindcss').Config} */
export default {
    content: ['./index.html', './src/**/*.{js,jsx}'],
    theme: {
        extend: {
            fontFamily: {
                code: ['"JetBrains Mono"', 'monospace'],
                ui: ['Inter', 'sans-serif'],
                display: ['"Clash Display"', 'sans-serif'],
            },
            keyframes: {
                'rocm-pulse': {
                    '0%, 100%': { opacity: '1' },
                    '50%': { opacity: '0.3' },
                },
            },
            animation: {
                'rocm-pulse': 'rocm-pulse 1.2s ease-in-out infinite',
            },
        },
    },
    plugins: [],
}