-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
68 lines (68 loc) · 1.38 KB
/
tailwind.config.js
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
module.exports = {
content: [
'./src/_includes/*.html',
'./src/_includes/components/*.html',
'./src/_includes/docs/*.html',
'./src/_includes/landing/*.html',
'./src/_layouts/*.html',
'./src/docs/*.md',
'./src/_drafts/*.md',
'./src/ts/*.ts',
'./src/index.md',
'./src/404.html'
],
theme: {
extend: {
inset: {
'0': 0,
auto: 'auto',
'2': '0.5rem',
'4': '1rem',
'7': '1.75rem'
},
typography: {
DEFAULT: {
css: {
maxWidth: '80ch',
h1: {
fontWeight: '700'
},
h2: {
fontWeight: '600'
},
h3: {
fontWeight: '500'
},
h4: {
fontWeight: '400'
},
code: {
fontWeight: '400'
},
a: {
fontWeight: '400'
},
strong: {
fontWeight: '500'
},
blockquote: {
fontWeight: '400'
},
thead: {
fontWeight: '500'
},
'code::before': {
content: 'none',
},
'code::after': {
content: 'none',
}
}
}
}
}
},
plugins: [
require('@tailwindcss/typography')
],
}