-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
41 lines (39 loc) · 1 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
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
CF4F3FA: "#F4F3FA",
CECF0FF: "#ECF0FF",
C99AAFF: "#99AAFF",
C748BFF: "#748BFF",
C8DBDFF: "#8DBDFF",
CAF9FF3: "#AF9FF3",
C333333: "#333333",
CD9D9D9: "#D9D9D9",
},
boxShadow: {
default: "0 0 3px rgba(0, 0, 0, 0.2)",
productCard: "0 0 3px rgba(0, 0, 0, 0.2)",
},
animation: {
shimmer: "shimmer 1.5s infinite linear",
},
keyframes: {
shimmer: {
"0%": { backgroundPosition: "200%" },
"100%": { backgroundPosition: "-200%" },
},
},
backgroundImage: {
"gradient-custom":
"linear-gradient(to right, #D9D9D9 0%, #EDEEF1 50%, #D9D9D9 100%)",
},
backgroundSize: {
custom: "300% 100%",
},
css: {},
},
},
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")],
};