-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
45 lines (45 loc) · 1.04 KB
/
tailwind.config.ts
File metadata and controls
45 lines (45 loc) · 1.04 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
container: {
center: true,
padding: "2rem",
},
screens: {
xs: "320px",
sm: "480px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
"3xl": "1920px",
"max-xs": { max: "479px" },
"max-sm": { max: "767px" },
"max-md": { max: "1023px" },
"max-lg": { max: "1279px" },
"max-xl": { max: "1535px" },
"max-2xl": { max: "1919px" },
},
extend: {
fontFamily: {
inter: ["Inter", "sans-serif"],
poppins: ["Poppins", "sans-serif"],
},
animation: {
border: "border 4s linear infinite",
},
keyframes: {
border: {
to: { "--border-angle": "360deg" },
},
},
backgroundImage: {
"gradient-dark":
"linear-gradient(to right, #10091a 0%, #131923 60%, #06101e 100%)",
},
},
},
plugins: [],
};