-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
59 lines (55 loc) · 1.17 KB
/
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
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
59
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
transitionDelay: {
100: "100ms",
200: "200ms",
300: "300ms",
400: "400ms",
500: "500ms",
600: "600ms",
700: "700ms",
800: "800ms",
900: "900ms",
1000: "1000ms",
1100: "1100ms",
1200: "1.2s",
1300: "1.3s",
1400: "1.4s",
1500: "1.5s",
},
extend: {
animation: {
marquee: "marquee 25s linear infinite",
marquee2: "marquee2 25s linear infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-100%)" },
},
marquee2: {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(0%)" },
},
},
borderWidth: {
"1px": "1px",
},
transitionDuration: {
600: "600ms",
800: "800ms",
900: "900ms",
},
width: {
"3.5/12": "26%",
},
},
},
plugins: [],
};