From f8ef884b6321f0ae4ed123bc7835f47425dea56e Mon Sep 17 00:00:00 2001 From: Hyko Date: Wed, 22 Apr 2026 16:04:03 -0400 Subject: [PATCH] style(ui): update color palette to use darker sh --- src/features/admin/widgets/users.client.js | 4 ++-- src/shared/components/StatCard.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/features/admin/widgets/users.client.js b/src/features/admin/widgets/users.client.js index 1bcb208..bea1133 100644 --- a/src/features/admin/widgets/users.client.js +++ b/src/features/admin/widgets/users.client.js @@ -13,8 +13,8 @@ function UsersWidget({ data, loading }) { change={!loading && newThisMonth > 0 ? `+${newThisMonth} ce mois` : undefined} changeType="increase" icon={UserMultiple02Icon} - color="text-purple-400" - bgColor="bg-purple-500/10" + color="text-blue-700" + bgColor="bg-blue-700/10" loading={loading} /> ); diff --git a/src/shared/components/StatCard.js b/src/shared/components/StatCard.js index 876ea15..51a1a33 100644 --- a/src/shared/components/StatCard.js +++ b/src/shared/components/StatCard.js @@ -14,7 +14,7 @@ const StatCard = ({ className = '', ...props }) => { - const deltaColor = changeType === 'increase' ? 'text-green-400' : 'text-red-400'; + const deltaColor = changeType === 'increase' ? 'text-green-700' : 'text-red-700'; const arrow = changeType === 'increase' ? '↑' : '↓'; return (