-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
38 lines (38 loc) · 1.07 KB
/
tailwind.config.cjs
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
33
34
35
36
37
38
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
animation: {
"kofi-wiggle": "kofi-wiggle 3s infinite",
},
colors: {
"pwhl-purple": {
50: "#33058d",
},
blue: {
1000: "#5963b3",
},
red: {
750: "#AF1E2D",
},
},
gridTemplateColumns: {
"auto-fill": "repeat(auto-fill, minmax(320px, 1fr))",
},
keyframes: {
"kofi-wiggle": {
"0%": { transform: "rotate(0) scale(1)" },
"60%": { transform: "rotate(0) scale(1)" },
"75%": { transform: "rotate(0) scale(1.12)" },
"80%": { transform: "rotate(0) scale(1.1)" },
"84%": { transform: "rotate(-10deg) scale(1.1)" },
"88%": { transform: "rotate(10deg) scale(1.1)" },
"92%": { transform: "rotate(-10deg) scale(1.1)" },
"100%": { transform: "rotate(0) scale(1)" },
},
},
},
},
plugins: [require("tailwindcss-react-aria-components")],
};