-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 969 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backgroundColor: {
customBlack: "rgba(0, 0, 0, 0.5)",
transparent: "rgba(0, 0, 0, 0.3)",
newBG: "rgba(35,38,67,.5)",
},
animation: {
pulseAnimation: "pulse 2s ease-in-out infinite",
},
keyframes: {
pulse: {
"0%": {
opacity: "0.3",
},
"50%": {
opacity: "0.5",
},
"100%": {
opacity: "0.3",
},
},
},
gridTemplateColumns: {
20: "repeat(20, minmax(0, 1fr))",
},
screens: {
"custom-sm": "320px",
"custom-sl": "425px",
"custom-500px": "500px",
"custom-600px": "600px",
"custom-xxl": "1440px",
},
colors: {
primary: "#777777",
},
},
},
plugins: [],
};