chore: Application du design system

This commit is contained in:
Luc SORIGNET
2026-04-05 12:00:34 +02:00
parent f9c0585b30
commit 2ef71f99c3
124 changed files with 1619 additions and 1508 deletions

View File

@ -15,15 +15,15 @@ const THEME = {
buttonHover: 'hover:bg-blue-100',
},
formulaire: {
bg: 'bg-emerald-50',
border: 'border-emerald-200',
iconBg: 'bg-emerald-100',
icon: 'text-emerald-600',
title: 'text-emerald-800',
desc: 'text-emerald-600',
button: 'bg-emerald-500 text-white hover:bg-emerald-600',
buttonText: 'text-emerald-700',
buttonHover: 'hover:bg-emerald-100',
bg: 'bg-primary/5',
border: 'border-primary/20',
iconBg: 'bg-primary/10',
icon: 'text-primary',
title: 'text-secondary',
desc: 'text-primary',
button: 'bg-primary text-white hover:bg-primary',
buttonText: 'text-secondary',
buttonHover: 'hover:bg-primary/10',
},
parent: {
bg: 'bg-orange-50',
@ -59,7 +59,7 @@ const SectionHeaderDocument = ({
</span>
)}
<div>
<h2 className={`text-lg font-semibold ${theme.title}`}>{title}</h2>
<h2 className={`font-headline text-lg font-semibold ${theme.title}`}>{title}</h2>
{description && (
<p className={`text-xs ${theme.desc}`}>{description}</p>
)}