skyfalldev/tailwind.config.mjs

34 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-07-06 11:00:38 +00:00
/** @type {import('tailwindcss').Config} */
export default {
2024-07-06 11:56:31 +00:00
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
2024-07-07 20:27:54 +00:00
extend: {
typography: ({ theme }) => ({
DEFAULT: {
css: {
2024-07-07 20:38:45 +00:00
"--tw-prose-body": theme("colors.pink[800]"),
2024-07-13 18:37:14 +00:00
"--tw-prose-bold": theme("colors.text"),
2024-07-07 20:38:45 +00:00
"--tw-prose-headings": theme("colors.text"),
"--tw-prose-links": theme("colors.text"),
"--tw-prose-hr": theme("colors.pink[300]"),
"--tw-prose-quotes": theme("colors.text"),
"--tw-prose-kbd": theme("colors.text"),
2024-07-07 20:27:54 +00:00
2024-07-07 20:38:45 +00:00
"--tw-prose-quote-borders": theme("colors.pink[300]"),
"--tw-prose-captions": theme("colors.pink[700]"),
"--tw-prose-code": theme("colors.text"),
"--tw-prose-pre-code": theme("colors.text"),
"--tw-prose-pre-bg": theme("colors.pink[900]"),
2024-07-07 20:27:54 +00:00
},
},
}),
2024-07-07 20:38:45 +00:00
},
2024-07-06 11:56:31 +00:00
},
plugins: [
require("@catppuccin/tailwindcss")({
defaultFlavour: "macchiato",
}),
2024-07-07 20:27:54 +00:00
require("@tailwindcss/typography"),
2024-07-06 11:56:31 +00:00
],
};