-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
32 lines (32 loc) · 924 Bytes
/
tailwind.config.js
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
31
32
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: "#6965db",
secondary: "#5b57d1",
},
keyframes: {
rotate: {
"0%": { transform: "rotate(0deg)" },
"100%": { transform: "rotate(360deg)" },
},
rainbow: {
"0%, 100%": { borderColor: "#FF0000" }, // Red
"16%": { borderColor: "#FF7F00" }, // Orange
"33%": { borderColor: "#FFFF00" }, // Yellow
"50%": { borderColor: "#00FF00" }, // Green
"66%": { borderColor: "#0000FF" }, // Blue
"83%": { borderColor: "#4B0082" }, // Indigo
},
},
animation: {
"spin-slow": "rotate 3s linear infinite",
rainbow: "rainbow 6s linear infinite",
},
},
},
plugins: [],
};