websites/tailwind.config.js
2023-06-15 12:17:18 +02:00

24 lines
451 B
JavaScript

const typography = require('@tailwindcss/typography');
const forms = require('@tailwindcss/forms');
module.exports = {
content: ['./hugo_stats.json'],
// safelist: [
// {
// pattern: /./, // the "." means "everything"
// },
// ],
plugins: [
typography,
forms,
],
// theme: {
// extend: {
// ringColor: ({ theme }) => ({
// DEFAULT: theme('colors.green.700', '#3b82f6'),
// ...theme('colors'),
// }),
// }
// }
};