aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 2acc4355fbdb5d27507b24aeb80ad0e80fc89c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// tailwind.config.js
module.exports = {
    content: [
        "./src/**/*.{js,ts,jsx,tsx}",
        "./components/**/*.{js,ts,jsx,tsx}"
    ],
    plugins: [],

    theme: {
        extend: {
            keyframes: {
                glow: {
                    '0%, 100%': { background: 'rgba(0, 255, 255, 0.0)' },
                    '50%': { background: 'rgba(0, 255, 255, 0.6)' },
                },
            },
            animation: {
                glow: 'glow 2s ease-in-out infinite',
            },
        },
    },
}