mirror of
https://codeberg.org/pluja/kycnot.me
synced 2025-01-09 14:09:30 -05:00
18 lines
346 B
JavaScript
18 lines
346 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./**/*.{html,js,gohtml}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
'samo': ['samo', 'monospace'],
|
|
'inter': ['inter', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
require('@tailwindcss/forms'),
|
|
],
|
|
}
|
|
|