diff --git a/frontend/src/component/insights/sections/LifecycleInsights.tsx b/frontend/src/component/insights/sections/LifecycleInsights.tsx index 4e9990f5d8..e8fc5ce59b 100644 --- a/frontend/src/component/insights/sections/LifecycleInsights.tsx +++ b/frontend/src/component/insights/sections/LifecycleInsights.tsx @@ -35,6 +35,12 @@ type LifecycleInsights = { const useChartColors = () => { const theme = useTheme(); + if (theme.mode === 'dark') { + return { + olderThanWeek: '#5A5CAC', + newThisWeek: '#698745', + }; + } return { olderThanWeek: theme.palette.primary.light, newThisWeek: theme.palette.success.border,