generated from zkSoju/frame
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
56 lines (56 loc) · 1.19 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
wagmi: "Satoshi",
},
colors: {
primary: "#ffae33",
tan: "#dbb877",
pita: "#000612",
},
boxShadow: {
damn: "0 2px 2px rgba(4,4,7,.45),0 8px 24px rgba(4,4,7,.6)",
},
dropShadow: {
soju: "0 0 5px #1da7eb",
tabler: "0 0 5px #fff",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--gradient-color-stops))",
},
keyframes: {
hide: {
"0%": {
opacity: 1,
},
"100%": {
opacity: 0,
},
},
slideIn: {
"0%": {
transform: "translateY(-110%)",
},
"100%": {
transform: "translateY(0)",
},
},
},
animation: {
hide: "hide 100ms ease-in",
slideIn: "slideIn 150ms cubic-bezier(0.16, 1, 0.3, 1)",
},
},
},
plugins: [
require("tailwindcss-radix")({
variantPrefix: "rdx",
}),
require("tailwind-gradient-mask-image"),
],
};