-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.cjs
45 lines (45 loc) · 1.22 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
39
40
41
42
43
44
45
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
primary: "#d1d5db",
},
animation: {
text: "text 5s ease infinite",
roam: "roam 20s infinite ease-in-out alternate",
roam1: "roam 10s infinite ease-in-out alternate",
},
keyframes: {
text: {
"0%, 100%": {
"background-size": "200% 200%",
"background-position": "left center",
},
"50%": {
"background-size": "200% 200%",
"background-position": "right center",
},
},
roam: {
"0%": {
transform: "rotate(0deg) translateX(-600px) translateY(-60px);",
},
"100%": {
transform: "rotate(360deg) translateX(400px) translateY(600px);",
},
},
roam1: {
"0%": {
transform: "rotate(0deg) translateX(-900px) translateY(-20px);",
},
"100%": {
transform: "rotate(360deg) translateX(20px);",
},
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};