-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 1.1 KB
/
tailwind.config.js
File metadata and controls
39 lines (39 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/renderer/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
vault: {
bg: "rgba(18, 18, 20, 0.95)",
surface: "rgba(28, 28, 32, 0.9)",
border: "rgba(255, 255, 255, 0.04)",
text: "#ffffff",
muted: "rgba(255, 255, 255, 0.4)",
accent: "#6366f1",
"accent-hover": "#5558e3",
},
},
animation: {
"fade-in": "fadeIn 0.15s ease-out",
"scale-in": "scaleIn 0.2s cubic-bezier(0.16, 1, 0.3, 1)",
"slide-up": "slideUp 0.2s ease-out",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
scaleIn: {
"0%": { opacity: "0", transform: "scale(0.96)" },
"100%": { opacity: "1", transform: "scale(1)" },
},
slideUp: {
"0%": { opacity: "0", transform: "translateY(6px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
},
},
},
plugins: [],
};