-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (41 loc) · 1.12 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
import daisyui from 'daisyui'
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
colors: {},
extend: {
keyframes: {
typingFull: {
"0%": { width: "0" },
"100%": { width: "100%" },
},
typing85: {
"0%": { width: "0" },
"100%": { width: "85%" },
},
blinkCaret: {
"50%": { borderColor: "transparent" },
},
hideCaretAfter: {
"100%": { borderColor: "transparent" },
},
hideContentBefore: {
"0%": { borderColor: "transparent", width: "0" },
},
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
},
animation: {
typingFull:
"typingFull 3.5s steps(40), blinkCaret 1s step-end infinite, hideCaretAfter 3.5s step-end forwards",
typing85:
"typing85 3.5s steps(40) 4s, blinkCaret 1s step-end 4s infinite, hideContentBefore 4s step-end forwards",
fadeIn: "fadeIn 0.5s forwards",
},
},
},
plugins: [daisyui],
}