forked from Obiajulu-gif/vaultquest-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 1.44 KB
/
Copy pathtailwind.config.js
File metadata and controls
53 lines (53 loc) · 1.44 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
48
49
50
51
52
53
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./app/**/*.{js,jsx}",
"./components/**/*.{js,jsx}",
"./stellar-wallet-connect/src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
vault: {
bg: "var(--vq-bg)",
surface: "var(--vq-surface)",
text: "var(--vq-text)",
muted: "var(--vq-muted)",
border: "var(--vq-border)",
accent: "var(--vq-accent)",
"accent-glow": "var(--vq-accent-glow)",
},
},
boxShadow: {
glass: "var(--vq-shadow-glass)",
glow: "var(--vq-shadow-glow)",
},
backgroundImage: {
"glass-gradient": "var(--vq-glass-gradient)",
},
transitionDuration: {
DEFAULT: "300ms",
},
transitionTimingFunction: {
DEFAULT: "cubic-bezier(0.4, 0, 0.2, 1)",
},
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: {
"spin-slow": "spin 3s linear infinite",
"accordion-down": "accordion-down 200ms cubic-bezier(0.4, 0, 0.2, 1)",
"accordion-up": "accordion-up 200ms cubic-bezier(0.4, 0, 0.2, 1)",
},
},
},
plugins: [],
};