Files
Ferme/frontend/tailwind.config.ts
tristan be29daf4d1
All checks were successful
Auto Tag Develop / tag (push) Successful in 5s
fix : corrections de tous les retours + modification de la seed et fixtures
2026-02-16 16:26:00 +01:00

17 lines
293 B
TypeScript

import type { Config } from 'tailwindcss'
export default <Partial<Config>>{
theme: {
extend: {
fontFamily: {
sans: ['"Helvetica Neue"', 'Helvetica', 'Arial', 'sans-serif']
},
colors: {
primary: {
500: '#456452',
}
}
}
}
}