Skip to content

Commit

Permalink
Make chart background color darker as outlined in issue #282
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolai Peram <nikolai_peram@outlook.com>
  • Loading branch information
thefinaljob authored and bhufmann committed Aug 25, 2021
1 parent 268b09e commit aa86ded
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class TraceContextComponent extends React.Component<TraceContextProps, Tr
height: this.DEFAULT_COMPONENT_HEIGHT,
rowHeight: this.DEFAULT_COMPONENT_ROWHEIGHT,
naviBackgroundColor: this.props.backgroundTheme === 'light' ? 0xf4f7fb : 0x3f3f3f,
chartBackgroundColor: this.props.backgroundTheme === 'light' ? 0xf4f7fb : 0x3f3f3f,
chartBackgroundColor: this.props.backgroundTheme === 'light' ? 0xf4f7fb : 0x232323,
cursorColor: 0x259fd8,
lineColor: this.props.backgroundTheme === 'light' ? 0x757575 : 0xbbbbbb
},
Expand Down Expand Up @@ -135,7 +135,7 @@ export class TraceContextComponent extends React.Component<TraceContextProps, Tr
height: this.DEFAULT_COMPONENT_HEIGHT,
rowHeight: this.DEFAULT_COMPONENT_ROWHEIGHT,
naviBackgroundColor: theme === 'light' ? 0xf4f7fb : 0x3f3f3f,
chartBackgroundColor: theme === 'light' ? 0xf4f7fb : 0x3f3f3f,
chartBackgroundColor: theme === 'light' ? 0xf4f7fb : 0x232323,
cursorColor: 0x259fd8,
lineColor: theme === 'light' ? 0x757575 : 0xbbbbbb
},
Expand Down

0 comments on commit aa86ded

Please sign in to comment.