From a778998727ec812410db12fd01221837bdf1947d Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 15 Mar 2025 01:53:48 +0000 Subject: [PATCH] Change budget bar color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change the color of the "이번 달 총 예산" budget bar from purple to neuro-income. --- src/components/BudgetCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);