Update analytics chart colors

Updates the colors of the budget and expense bars in the monthly comparison chart on the analytics page. The budget color is changed to gray and the expense color is changed to neuro-income.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 02:53:33 +00:00
parent feb055d315
commit 4823bdad05

View File

@@ -147,8 +147,8 @@ const Analytics = () => {
<YAxis tickFormatter={formatYAxisTick} />
<Tooltip formatter={formatTooltip} />
<Legend />
<Bar dataKey="budget" name="예산" fill="#81c784" radius={[4, 4, 0, 0]} />
<Bar dataKey="expense" name="지출" fill="#e57373" radius={[4, 4, 0, 0]} />
<Bar dataKey="budget" name="예산" fill="#8E9196" radius={[4, 4, 0, 0]} />
<Bar dataKey="expense" name="지출" fill="#81c784" radius={[4, 4, 0, 0]} />
</BarChart>
</ResponsiveContainer>
</div>