yuzucchii.xyz/tailwind.config.js
2025-05-06 21:11:52 -05:00

23 lines
545 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/app/views/**/*.{zmpl,html,js}", "./src/main.zig"],
theme: {
extend: {
typography: ({ theme }) => ({
DEFAULT: {
css: {
color: theme('colors.gray.800'),
a: { color: theme('colors.blue.600') },
pre: { backgroundColor: theme('colors.gray.100') },
blockquote: {
borderLeftColor: theme('colors.yellow.400'),
fontStyle: 'italic',
},
}
}
})
}
},
plugins: [require('@tailwindcss/typography')],
}