-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
55 lines (54 loc) · 1.35 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
blob: "blob 7s infinite",
},
keyframes: {
blob: {
"0%": {
transform: "translate(0px, 0px) scale(1)",
},
"33%": {
transform: "translate(30px, -50px) scale(1.1)",
},
"66%": {
transform: "translate(-20px, 20px) scale(0.9)",
},
"100%": {
transform: "translate(0px, 0px) scale(1)",
},}},
blur: {
sm: "0.375em",
},
transitionTimingFunction: {
"ease-in-out": "cubic-bezier(0.65, 0, 0.35, 1)",
},
backgroundImage: {
"conic-gradient":
"conic-gradient(from 180deg at 50% 50%, #22ffff, #3c64ff, #c03afc, #ff54e8, #ff5959)",
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
blue: {
500: "#3B82F6", // Adjust to your aesthetic blue
},
},
maxWidth: {
"9xl": "96rem",
},
fontFamily: {
sans: ["Inter", "sans-serif"], // Use a modern font
},
},
},
plugins: [],
};
export default config;