-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
29 lines (28 loc) · 905 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
29 lines (28 loc) · 905 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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
animation: {
"blur-in": "blur-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards",
},
keyframes: {
"blur-in": {
"0%": { opacity: "0", filter: "blur(10px)", transform: "translateY(20px)" },
"100%": { opacity: "1", filter: "blur(0)", transform: "translateY(0)" }
}
},
},
},
plugins: [require("tailwindcss-animate")],
};
export default config;