-
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) · 838 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
41 lines (41 loc) · 838 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
40
41
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
prose: [
"-apple-system",
"BlinkMacSystemFont",
"PingFang SC",
"Hiragino Sans GB",
"Microsoft YaHei",
"Inter",
"system-ui",
"sans-serif",
],
mono: [
"ui-monospace",
"SFMono-Regular",
"JetBrains Mono",
"Menlo",
"Monaco",
"Consolas",
"monospace",
],
},
colors: {
canvas: {
light: "#fdfdfd",
dark: "#1a1a1a",
},
ink: {
light: "#1f2328",
dark: "#e6edf3",
},
},
},
},
plugins: [],
};