style(ui): update color palette to use darker sh
This commit is contained in:
@@ -13,8 +13,8 @@ function UsersWidget({ data, loading }) {
|
|||||||
change={!loading && newThisMonth > 0 ? `+${newThisMonth} ce mois` : undefined}
|
change={!loading && newThisMonth > 0 ? `+${newThisMonth} ce mois` : undefined}
|
||||||
changeType="increase"
|
changeType="increase"
|
||||||
icon={UserMultiple02Icon}
|
icon={UserMultiple02Icon}
|
||||||
color="text-purple-400"
|
color="text-blue-700"
|
||||||
bgColor="bg-purple-500/10"
|
bgColor="bg-blue-700/10"
|
||||||
loading={loading}
|
loading={loading}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ const StatCard = ({
|
|||||||
className = '',
|
className = '',
|
||||||
...props
|
...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' ? '↑' : '↓';
|
const arrow = changeType === 'increase' ? '↑' : '↓';
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
Reference in New Issue
Block a user