31 lines
536 B
JavaScript
31 lines
536 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./templates/**/*.twig',
|
|
],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: '2rem',
|
|
},
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Lato', 'sans-serif'],
|
|
},
|
|
fontWeight: {
|
|
semibold: '700',
|
|
bold: '900',
|
|
},
|
|
colors: {
|
|
primary: '#3d8ccb',
|
|
secondary: '#f9c700',
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}
|
|
|