fix: add tooltip text color for dark theme in all charts

Added color and itemStyle to Recharts Tooltip so text is visible on dark backgrounds.
This commit is contained in:
Fringg
2026-03-18 17:59:12 +03:00
parent c5f621b399
commit d640cc1a04
6 changed files with 12 additions and 0 deletions

View File

@@ -96,8 +96,10 @@ export function SimpleAreaChart({
border: `1px solid ${colors.tooltipBorder}`,
borderRadius: SALES_STATS.TOOLTIP.BORDER_RADIUS,
fontSize: SALES_STATS.TOOLTIP.FONT_SIZE,
color: colors.label,
}}
labelStyle={{ color: colors.label }}
itemStyle={{ color: colors.label }}
formatter={(value: number | undefined) => [value ?? 0, valueLabel || '']}
/>
<Area