-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
74 lines (73 loc) · 2.67 KB
/
tailwind.config.ts
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
typography: {
DEFAULT: {
css: {
maxWidth: "65ch",
color: "rgb(161 161 170)",
'[class~="lead"]': {
color: "rgb(161 161 170)",
},
a: {
color: "rgb(74 222 128)",
"text-decoration": "none",
},
strong: {
color: "rgb(244 244 245)",
},
"ol > li::marker": {
color: "rgb(161 161 170)",
},
"ul > li::marker": {
color: "rgb(161 161 170)",
},
hr: {
borderColor: "rgb(39 39 42)",
},
blockquote: {
color: "rgb(161 161 170)",
borderLeftColor: "rgb(39 39 42)",
},
h1: {
color: "rgb(244 244 245)",
},
h2: {
color: "rgb(244 244 245)",
},
h3: {
color: "rgb(244 244 245)",
},
h4: {
color: "rgb(244 244 245)",
},
"figure figcaption": {
color: "rgb(161 161 170)",
},
code: {
color: "rgb(244 244 245)",
},
"a code": {
color: "rgb(74 222 128)",
},
pre: {
color: "rgb(39 39 42)",
backgroundColor: "rgb(24 24 27)",
},
thead: {
color: "rgb(244 244 245)",
borderBottomColor: "rgb(63 63 70)",
},
"tbody tr": {
borderBottomColor: "rgb(39 39 42)",
},
},
},
},
},
},
plugins: [typography],
} satisfies Config;