-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 1.05 KB
/
Copy pathtailwind.config.js
File metadata and controls
43 lines (43 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: [
"./index.html",
"./index.tsx",
"./App.tsx",
"./components/**/*.{ts,tsx}",
"./contexts/**/*.{ts,tsx}",
"./utils/**/*.{ts,tsx}",
"./*.{ts,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["Inter", "sans-serif"],
mono: ["JetBrains Mono", "monospace"],
outfit: ["Outfit", "sans-serif"],
chewy: ["Chewy", "cursive"],
marker: ["Permanent Marker", "cursive"],
},
colors: {
dark: {
bg: "#0f172a", // slate-900
surface: "#1e293b", // slate-800
border: "#334155", // slate-700
},
},
animation: {
float: "float 6s ease-in-out infinite",
"spin-slow": "spin 60s linear infinite",
},
keyframes: {
float: {
"0%": { transform: "translateY(0px)" },
"50%": { transform: "translateY(-20px)" },
"100%": { transform: "translateY(0px)" },
},
},
},
},
plugins: [],
};