Change budget bar color

Change the color of the "이번 달 총 예산" budget bar from purple to neuro-income.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 01:53:48 +00:00
parent 0a4a689915
commit a778998727

View File

@@ -13,7 +13,7 @@ const BudgetCard: React.FC<BudgetCardProps> = ({
title, title,
current, current,
total, total,
color = 'neuro-accent' color = 'neuro-income'
}) => { }) => {
const percentage = Math.min(Math.round((current / total) * 100), 100); const percentage = Math.min(Math.round((current / total) * 100), 100);