forked from sb-decoder/inquizzitive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (45 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
45 lines (45 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Inter", "system-ui", "-apple-system", "sans-serif"],
},
colors: {
gradient: {
purple: "#667eea",
"purple-dark": "#764ba2",
pink: "#f093fb",
red: "#f5576c",
blue: "#4facfe",
},
},
animation: {
float: "float 6s ease-in-out infinite",
slideInUp: "slideInUp 0.5s ease-out",
},
keyframes: {
float: {
"0%, 100%": { transform: "translate(0, 0) rotate(0deg)" },
"33%": { transform: "translate(30px, -30px) rotate(120deg)" },
"66%": { transform: "translate(-20px, 20px) rotate(240deg)" },
},
slideInUp: {
from: {
opacity: "0",
transform: "translateY(30px)",
},
to: {
opacity: "1",
transform: "translateY(0)",
},
},
},
backdropBlur: {
xs: "2px",
},
},
},
plugins: [],
};