diff --git a/packages/react-components/src/components/timegraph-output-component.tsx b/packages/react-components/src/components/timegraph-output-component.tsx index 6bd211d6f..b85c47853 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: this.props.backgroundTheme === 'light' ? 0xD3D3D3 : 0x3F4146 , // 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