-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
39 lines (38 loc) · 919 Bytes
/
tailwind.config.ts
File metadata and controls
39 lines (38 loc) · 919 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
34
35
36
37
38
39
import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
fontFamily: {
display: ["Space Grotesk", "Avenir Next", "Segoe UI", "sans-serif"],
sans: ["IBM Plex Sans", "Avenir Next", "Segoe UI", "sans-serif"],
},
colors: {
ink: {
50: "#f5f3ff",
200: "#d7c9ff",
400: "#9b82ff",
600: "#5a3bdb",
800: "#2d176b",
900: "#160a35",
},
ember: {
300: "#ffb894",
500: "#ff7b44",
700: "#cb4d1f",
},
graphite: {
100: "#f3f5f8",
200: "#d8dee9",
400: "#7f8796",
700: "#29303f",
900: "#141821",
},
},
boxShadow: {
glow: "0 12px 40px rgba(90, 59, 219, 0.25)",
},
},
},
plugins: [],
} satisfies Config;