-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathtailwind.config.js
86 lines (86 loc) · 2.05 KB
/
tailwind.config.js
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx,js,jsx}",
"./components/**/*.{ts,tsx,js,jsx}",
"./app/**/*.{ts,tsx,js,jsx}",
"./src/**/*.{ts,tsx,js,jsx}",
],
prefix: "",
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
gridTemplateColumns: {
"auto-fill-250": "repeat(auto-fill, minmax(250px, 1fr))",
"auto-fill-350": "repeat(auto-fill, minmax(350px, 1fr))",
"auto-fill-110": "repeat(auto-fill, minmax(110px, 1fr))",
"auto-fill-32": "repeat(auto-fill, minmax(32px, 1fr))",
},
colors: {
"border-primary": "#242424",
"border-secondary": "#7F7F7F",
"background-secondary": "#0a0a0a",
"background-alert": "rgba(0, 0, 0, 0.9)",
"color-secondary": "#1A1A1A",
"color-tertiary": "#888",
999: "#999",
},
height: {
"60vh": "60vh",
"80vh": "80vh",
260: "260px",
},
minWidth: {
"grid-img": "560px",
250: "250px",
},
maxWidth: {
img: "850px",
350: "350px",
90: "90%",
180: "180px",
},
flexBasis: {
600: "600px",
800: "800px",
},
translate: {
hide: "-100%",
},
screens: {
xs: "350px",
},
flexGrow: {
999: "999",
},
inset: {
selected: "-7px",
},
fontSize: {
13: "13px",
},
},
},
plugins: [require("tailwindcss-animate")],
};