aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 3609e49a02ed56e2a16dff7c67d8182264044739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// tailwind.config.js
// Configures TailwindCSS.
// -- Sets content scanning paths, custom themes, plugins, etc.
// -- Tailwind uses this to tree-shake unused styles in Vite builds.
// -- Must align with where your components and templates are (e.g., src/**/*.{tsx,ts}).
// -- You may need to restart Vite when this changes.

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',
            },
        },
    },
}