28 lines
704 B
TypeScript
28 lines
704 B
TypeScript
|
|
import type { Config } from "tailwindcss";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
content: [
|
||
|
|
"./src/**/*.{html,ts,tsx}", // Adjust the paths to match your project structure
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
"color-1": "hsl(var(--color-1))",
|
||
|
|
"color-2": "hsl(var(--color-2))",
|
||
|
|
"color-3": "hsl(var(--color-3))",
|
||
|
|
"color-4": "hsl(var(--color-4))",
|
||
|
|
"color-5": "hsl(var(--color-5))",
|
||
|
|
},
|
||
|
|
animation: {
|
||
|
|
rainbow: "rainbow var(--speed, 2s) infinite linear",
|
||
|
|
},
|
||
|
|
keyframes: {
|
||
|
|
rainbow: {
|
||
|
|
"0%": { "background-position": "0%" },
|
||
|
|
"100%": { "background-position": "200%" },
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
} satisfies Config;
|