23 lines
587 B
JavaScript
23 lines
587 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./assets/**/*.js",
|
|
"./templates/**/*.html.twig",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'brand-teal': '#4DD5C8', // Boutons
|
|
'brand-gold': '#E6A638', // Accent
|
|
'brand-dark': '#000000', // Police
|
|
'bg-primary': '#F9FCF7', // Fond principal
|
|
'bg-secondary': '#23978B', // Fond secondaire
|
|
},
|
|
fontFamily: {
|
|
'sans': ['Sora', 'system-ui', 'sans-serif'],
|
|
'title': ['Caveat', 'cursive'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |