From f2d3fc28f85a0bf9f3062f8c09a129a063dd65be Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Fri, 3 Apr 2026 10:43:50 +0000 Subject: [PATCH] fix(chart-area): update grid line colors for improved visibility in dark mode --- .../elements/00group-chart/dees-chart-area/component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ts_web/elements/00group-chart/dees-chart-area/component.ts b/ts_web/elements/00group-chart/dees-chart-area/component.ts index 782599a..ca99605 100644 --- a/ts_web/elements/00group-chart/dees-chart-area/component.ts +++ b/ts_web/elements/00group-chart/dees-chart-area/component.ts @@ -166,8 +166,8 @@ export class DeesChartArea extends DeesElement { attributionLogo: false, }, grid: { - vertLines: { visible: false }, - horzLines: { color: isDark ? 'hsl(0 0% 14.9%)' : 'hsl(0 0% 94%)' }, + vertLines: { color: isDark ? 'hsl(0 0% 8.5%)' : 'hsl(0 0% 95.5%)' }, + horzLines: { color: isDark ? 'hsl(0 0% 8.5%)' : 'hsl(0 0% 95.5%)' }, }, } as any); @@ -368,8 +368,8 @@ export class DeesChartArea extends DeesElement { attributionLogo: false, }, grid: { - vertLines: { visible: false }, - horzLines: { color: isDark ? 'hsl(0 0% 14.9%)' : 'hsl(0 0% 94%)' }, + vertLines: { color: isDark ? 'hsl(0 0% 8.5%)' : 'hsl(0 0% 95.5%)' }, + horzLines: { color: isDark ? 'hsl(0 0% 8.5%)' : 'hsl(0 0% 95.5%)' }, }, rightPriceScale: { borderVisible: false,