From 04ab93daf2a1519e6b3a46b2b982672bc0d308b1 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 02:56:09 +0000 Subject: [PATCH] Change yellow color to dark green Replaced the yellow color with dark green to improve text visibility. --- src/pages/Analytics.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Analytics.tsx b/src/pages/Analytics.tsx index 271b99d..c6e795f 100644 --- a/src/pages/Analytics.tsx +++ b/src/pages/Analytics.tsx @@ -9,7 +9,7 @@ import { ChevronLeft, ChevronRight } from 'lucide-react'; const Analytics = () => { const [selectedPeriod, setSelectedPeriod] = useState('이번 달'); - // Updated expense categories with new green and yellow color scheme + // Updated expense categories with green color scheme const expenseData = [{ name: '식비', value: 350000, @@ -21,7 +21,7 @@ const Analytics = () => { }, { name: '교통비', value: 175000, - color: '#FFF176' // Soft yellow + color: '#2E7D32' // Dark green (replacing yellow) }]; // Sample data for the monthly comparison - renamed income to budget