-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
38 lines (37 loc) · 1.46 KB
/
tailwind.config.ts
File metadata and controls
38 lines (37 loc) · 1.46 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
/** @type {import('tailwindcss').Config} */
export default {
theme: {
extend: {
typography: {
DEFAULT: {
css: {
maxWidth: 'none',
fontSize: 'var(--text-base)',
lineHeight: 'var(--leading-xl)',
wordBreak: 'break-word',
hyphens: 'auto',
textWrap: 'wrap',
'--tw-prose-body': 'var(--color-foreground)',
'--tw-prose-headings': 'var(--color-foreground)',
'--tw-prose-lead': 'var(--color-foreground)',
'--tw-prose-links': 'var(--color-foreground)',
'--tw-prose-bold': 'var(--color-foreground)',
'--tw-prose-counters': 'var(--color-foreground)',
'--tw-prose-bullets': 'var(--color-foreground)',
'--tw-prose-hr': 'var(--color-background)',
'--tw-prose-quotes': 'var(--color-foreground)',
'--tw-prose-quote-borders': 'var(--color-foreground)',
'--tw-prose-captions': 'var(--color-foreground)',
'--tw-prose-code': 'var(--color-foreground)',
'--tw-prose-kbd': 'var(--color-primary)',
'--tw-prose-kbd-shadows': 'var(--color-background)',
'--tw-prose-pre-code': 'var(--color-foreground)',
'--tw-prose-pre-bg': 'var(--color-foreground)',
'--tw-prose-th-borders': 'var(--color-foreground)',
'--tw-prose-td-borders': 'var(--color-foreground)',
},
},
},
},
},
};