forked from cjpais/Handy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 1021 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 1021 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
text: "var(--color-text)",
background: "var(--color-background)",
"logo-primary": "var(--color-logo-primary)",
"logo-secondary": "var(--color-logo-secondary)",
"logo-stroke": "var(--color-logo-stroke)",
"text-stroke": "var(--color-text-stroke)",
"accent-cyan": "var(--color-accent-cyan)",
"accent-purple": "var(--color-accent-purple)",
},
animation: {
"slide-in-right": "slideInRight 0.3s ease-out",
"fade-out": "fadeOut 0.2s ease-out",
},
keyframes: {
slideInRight: {
"0%": { transform: "translateX(100%)", opacity: "0" },
"100%": { transform: "translateX(0)", opacity: "1" },
},
fadeOut: {
"0%": { opacity: "1" },
"100%": { opacity: "0" },
},
},
},
},
plugins: [],
};