diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2023-09-09 19:18:39 +0100 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2023-09-09 19:18:39 +0100 |
commit | 6316595b7c9ac5d7ea6ac518edab96300140c9f7 (patch) | |
tree | fe3ffc5af9a365e6d34671b71ff4409d47fc2e8a /docs/tailwind.config.js | |
parent | 9868860abb2aa31612a14254dfe2584d52f1b7e1 (diff) | |
download | lustre-6316595b7c9ac5d7ea6ac518edab96300140c9f7.tar.gz lustre-6316595b7c9ac5d7ea6ac518edab96300140c9f7.zip |
:memo: Idk docs lol.
Diffstat (limited to 'docs/tailwind.config.js')
-rw-r--r-- | docs/tailwind.config.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/docs/tailwind.config.js b/docs/tailwind.config.js index 24b6555..2f45b89 100644 --- a/docs/tailwind.config.js +++ b/docs/tailwind.config.js @@ -3,8 +3,17 @@ export default { theme: { extend: { fontFamily: { - sans: ["NTDapper"], + 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")], |