mirror of
https://github.com/chaoming/hugo-saasify-theme.git
synced 2025-04-20 03:11:53 +02:00
21 lines
No EOL
530 B
JavaScript
21 lines
No EOL
530 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
presets: [require('./themes/hugo-saasify-theme/tailwind.config.js')],
|
|
content: [
|
|
"./themes/hugo-saasify-theme/layouts/**/*.html",
|
|
"./layouts/**/*.html",
|
|
"./content/**/*.{html,md}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
heading: ['Plus Jakarta Sans', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
} |