forked from Sehaj-0186/BitVision
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
47 lines (47 loc) · 1.19 KB
/
Copy pathtailwind.config.mjs
File metadata and controls
47 lines (47 loc) · 1.19 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
46
47
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
boxShadow: {
"3xl": "0px 0px 40px 0px rgba(0, 0, 0, 0.3)",
"normal": "0px 0px 10px 0px rgba(0, 0, 0, 0.3)"
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
fontFamily: {
cinzel: ["Cinzel"],
bonaNova: ["BonaNova"],
grotesk: ["Clash Grotesk"]
}
},
"animation": {
"background-shine": "background-shine 2s linear infinite"
},
"keyframes": {
"background-shine": {
"from": {
"backgroundPosition": "0 0"
},
"to": {
"backgroundPosition": "-200% 0"
}
},
shimmer: {
'0%': { transform: 'translateX(-200%)' },
'100%': { transform: 'translateX(200%)' }
},
pulse: {
'0%': { transform: 'translate(-50%, -50%) scale(0)', opacity: '1' },
'100%': { transform: 'translate(-50%, -50%) scale(2)', opacity: '0' }
}
}
},
plugins: [],
};