-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
55 lines (54 loc) · 1.31 KB
/
tailwind.config.ts
File metadata and controls
55 lines (54 loc) · 1.31 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
46
47
48
49
50
51
52
53
54
55
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
brand: {
50: "#EEF5FB",
100: "#D9EAF7",
200: "#B8D6EF",
300: "#90BDE4",
400: "#5E9FD6",
500: "#377FBE",
600: "#2B679B",
700: "#254F78",
800: "#243D5F",
900: "#22314E"
},
cta: {
500: "#39D95D",
600: "#29BB48"
}
},
fontFamily: {
heading: ["Baloo 2", "ui-sans-serif", "system-ui", "sans-serif"],
sans: ["DM Sans", "ui-sans-serif", "system-ui", "sans-serif"],
mono: [
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace"
]
},
boxShadow: {
crisp: "0 6px 0 #25314d"
},
keyframes: {
"fade-up": {
"0%": { opacity: "0", transform: "translateY(8px)" },
"100%": { opacity: "1", transform: "translateY(0)" }
}
},
animation: {
"fade-up": "fade-up 400ms ease-out both"
}
}
},
plugins: [typography]
} satisfies Config;