1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
export default {
content: ["./index.html", "./src/**/*.{mjs,gleam}"],
theme: {
extend: {
fontFamily: {
serif: ["Fraunces", "serif"],
sans: ["Inter", "sans-serif"],
},
typography: (theme) => ({
lustre: {
css: {
"--tw-prose-pre-code": "var(--tw-prose-body)",
"--tw-prose-pre-bg": theme("colors.gray[50]"),
},
},
}),
},
},
plugins: [require("@tailwindcss/typography")],
};
|