From b73e8332132236c5a0af923d551a5b1f656618d9 Mon Sep 17 00:00:00 2001 From: Ibrahim Fradj Date: Thu, 5 Aug 2021 16:04:41 -0400 Subject: [PATCH] Reduction contrast of grid lines change the color of lineColor with #35373B for horizontal grid lines , #2B2E31 for vertical grid lines and background with #232323 Fixes #441 Signed-off-by: Ibrahim Fradj --- .../src/components/timegraph-output-component.tsx | 6 +++--- .../src/components/trace-context-component.tsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/react-components/src/components/timegraph-output-component.tsx b/packages/react-components/src/components/timegraph-output-component.tsx index fea228489..5e12b090f 100644 --- a/packages/react-components/src/components/timegraph-output-component.tsx +++ b/packages/react-components/src/components/timegraph-output-component.tsx @@ -81,7 +81,7 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent ({ backgroundColor: 0x979797,// 0xaaaaff, backgroundOpacity: row.selected ? 0.1 : 0, - lineColor: 0xdddddd, // hasStates ? 0xdddddd : 0xaa4444, // row.data && row.data.hasStates + lineColor: 0x35373B , // hasStates ? 0xdddddd : 0xaa4444, // row.data && row.data.hasStates lineThickness: 1, // hasStates ? 1 : 3 // row.data && row.data.hasStates }) }; @@ -328,7 +328,7 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent