You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
505 B
JavaScript
21 lines
505 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./**/*.{html,js,php}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
rubik: ['Rubik', 'sans-serif'],
|
|
grenzeGotisch: ['GrenzeGotisch', 'serif'],
|
|
fingerpaint: ['FingerPaint', 'sans-serif'],
|
|
narrow: ['PTSansNarrow', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {
|
|
width: ["responsive", "hover", "focus"],
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|