diff --git a/src/components/BudgetCard.tsx b/src/components/BudgetCard.tsx index 5c33e92..263c123 100644 --- a/src/components/BudgetCard.tsx +++ b/src/components/BudgetCard.tsx @@ -13,7 +13,7 @@ const BudgetCard: React.FC = ({ title, current, total, - color = 'neuro-accent' + color = 'neuro-income' }) => { const percentage = Math.min(Math.round((current / total) * 100), 100);