-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
49 lines (47 loc) · 1.01 KB
/
tailwind.config.ts
File metadata and controls
49 lines (47 loc) · 1.01 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
import type { Config } from "tailwindcss";
const config = {
content: [
"./src/**/*.{ts,tsx,md,mdx}",
"*.{js,ts,jsx,tsx,mdx}",
],
prefix: "",
theme: {
extend: {
colors: {
body: "#222",
link: "#1481b8",
sidebar: {
bg: "#29313d",
border: "#3b4b5e",
link: "#7aa0b8",
hover: "#dee9ed",
},
callout: {
axiom: {
border: "#2e7d32",
bg: "#f1f8f1",
},
definition: {
border: "#e65100",
bg: "#fff8f0",
},
theorem: {
border: "#1565c0",
bg: "#f0f4ff",
},
proof: {
border: "#757575",
bg: "#fafafa",
},
},
},
fontFamily: {
serif: ["'Crimson Text'", "serif"],
sans: ["'Source Sans 3'", "sans-serif"],
mono: ["'Source Code Pro'", "monospace"],
},
},
},
plugins: [],
} satisfies Config;
export default config;