forked from Stellopay/stellopay-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 746 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
30 lines (30 loc) · 746 Bytes
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
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
clash: ["var(--font-clash)"],
general: ["var(--font-general)"],
},
keyframes: {
shimmer: {
"100%": { transform: "translateX(100%)" },
},
"search-highlight": {
"0%": { backgroundColor: "rgba(59, 130, 246, 0.15)" },
"100%": { backgroundColor: "transparent" },
},
},
animation: {
shimmer: "shimmer 2s infinite",
"search-highlight": "search-highlight 2.5s ease-out",
},
},
},
plugins: [],
};