-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathtailwind.config.js
More file actions
67 lines (66 loc) · 1.72 KB
/
Copy pathtailwind.config.js
File metadata and controls
67 lines (66 loc) · 1.72 KB
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
60
61
62
63
64
65
66
67
import { heroui } from "@heroui/theme";
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./config/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)"],
mono: ["var(--font-mono)"],
},
keyframes: {
"fade-in": {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
"slide-in-from-bottom": {
"0%": { transform: "translateY(1rem)", opacity: "0" },
"100%": { transform: "translateY(0)", opacity: "1" },
},
flow: {
"0%": {
transform: "translateX(-100%)",
opacity: "0",
},
"10%": {
opacity: "1",
},
"90%": {
opacity: "1",
},
"100%": {
transform: "translateX(100%)",
opacity: "0",
},
},
"network-loading": {
"0%": {
transform: "translateX(-100%)",
opacity: "0",
},
"50%": {
opacity: "1",
},
"100%": {
transform: "translateX(100%)",
opacity: "0",
},
},
},
animation: {
"fade-in": "fade-in 0.3s ease-out forwards",
"slide-in-from-bottom-4": "slide-in-from-bottom 0.4s ease-out forwards",
flow: "flow 3s cubic-bezier(0.4,0,0.6,1) infinite",
"network-loading":
"network-loading 2s cubic-bezier(0.4,0,0.6,1) infinite",
},
},
},
darkMode: "class",
plugins: [heroui()],
};