my website at https://anirudh.fi
1module.exports = {
2 content: ["./templates/**/*.html", "./pages/**/*.md"],
3 darkMode: "media",
4 theme: {
5 container: {
6 padding: "2rem",
7 center: true,
8 screens: {
9 sm: "500px",
10 md: "600px",
11 lg: "800px",
12 xl: "1000px",
13 "2xl": "1200px",
14 },
15 },
16 extend: {
17 fontFamily: {
18 sans: ["--apple-system", "system-ui", "sans-serif", "ui-sans-serif"],
19 },
20 typography: {
21 DEFAULT: {
22 css: {
23 maxWidth: "75ch",
24 },
25 },
26 },
27 },
28 },
29 plugins: [require("@tailwindcss/typography")],
30};