mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 17:47:00 -05:00
[fix] Update BudgetAnalysisGraph to use a darker gray for balance to increase legibility (#6791)
* Update BudgetAnalysisGraph.tsx Use reportsGray for Balance. * Fix Budget Analysis Graph balance color variable Use reportsGray instead of numberNeutral for balance points and line.
This commit is contained in:
@@ -169,7 +169,7 @@ function CustomTooltip({
|
||||
style={{
|
||||
width: 10,
|
||||
height: 10,
|
||||
backgroundColor: theme.reportsNumberNeutral,
|
||||
backgroundColor: theme.reportsGray,
|
||||
display: 'inline-block',
|
||||
}}
|
||||
/>
|
||||
@@ -285,7 +285,7 @@ export function BudgetAnalysisGraph({
|
||||
<Line
|
||||
type="monotone"
|
||||
dataKey="balance"
|
||||
stroke={theme.reportsNumberNeutral}
|
||||
stroke={theme.reportsGray}
|
||||
strokeWidth={2}
|
||||
name={balanceLabel}
|
||||
dot={false}
|
||||
@@ -356,7 +356,7 @@ export function BudgetAnalysisGraph({
|
||||
<Line
|
||||
type="monotone"
|
||||
dataKey="balance"
|
||||
stroke={theme.reportsNumberNeutral}
|
||||
stroke={theme.reportsGray}
|
||||
strokeWidth={2}
|
||||
name={balanceLabel}
|
||||
dot={false}
|
||||
|
||||
6
upcoming-release-notes/6791.md
Normal file
6
upcoming-release-notes/6791.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [Juulz]
|
||||
---
|
||||
|
||||
Fix Budget Analysis graph to enhance Balance (line and points) for legibility.
|
||||
Reference in New Issue
Block a user