29 lines
650 B
1
/** @type {import('tailwindcss').Config} */
2
module.exports = {
3
content: ["./templates/**/*.html"],
4
theme: {
5
container: {
6
padding: "2rem",
7
center: true,
8
screens: {
9
sm: "540px",
10
md: "640px",
11
lg: "768px",
12
xl: "900px",
13
"2xl": "1024px"
14
},
15
},
16
extend: {
17
fontFamily: {
18
sans: ["iA Writer Quattro S", "Inter", "system-ui", "sans-serif", "ui-sans-serif"],
19
mono: ["iA Writer Mono S", "ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", "monospace"],
20
},
21
maxWidth: {
22
'prose': '65ch',
23
},
24
},
25
},
26
plugins: [
27
require('@tailwindcss/typography'),
28
],
29
};
30