-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
58 lines (53 loc) · 1.29 KB
/
tailwind.config.ts
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
46
47
48
49
50
51
52
53
54
55
56
57
58
import { Scale, Scale3D } from "lucide-react";
import { transform } from "next/dist/build/swc";
import type { Config } from "tailwindcss";
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
keyframes: {
slidein: {
"0%" : {
transform: "translateX(-100px)",
},
"100%": {
transform: "translateX(0)",
}
},
growappear: {
"0%": {
transform: "scale(0,1)",
},
"100%": {
transform: "scale(1,1)",
},
},
fadein: {
"0%": {
opacity: 0
},
"50%": {
opacity: 1
},
"100%": {
opacity: 0
},
}
},
animation: {
slidein: "slidein .25s ease-in-out",
growappear: "growappear .25s ease-in-out",
fadein: "fadein 1s ease-in-out"
},
},
plugins: [],
}
};