-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 1.11 KB
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 1.11 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["'DM Sans'", "system-ui", "sans-serif"],
mono: ["'JetBrains Mono'", "monospace"],
},
colors: {
brand: {
50: "#EEEDFE",
100: "#CECBF6",
200: "#AFA9EC",
400: "#7F77DD",
600: "#534AB7",
800: "#3C3489",
900: "#26215C",
},
surface: {
50: "#F8F8F7",
100: "#F1EFE8",
200: "#D3D1C7",
800: "#1C1B19",
900: "#131210",
},
},
animation: {
"pulse-slow": "pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite",
"fade-in": "fadeIn 0.2s ease-out",
"slide-up": "slideUp 0.25s ease-out",
},
keyframes: {
fadeIn: { from: { opacity: 0 }, to: { opacity: 1 } },
slideUp: { from: { transform: "translateY(6px)", opacity: 0 }, to: { transform: "translateY(0)", opacity: 1 } },
},
},
},
plugins: [],
};