Skip to content

Commit

Permalink
Make chart background color darker as outlined in issue eclipse-cdt-c…
Browse files Browse the repository at this point in the history
…loud#382

Signed-off-by: Nikolai Peram <nikolai_peram@outlook.com>
  • Loading branch information
thefinaljob committed Jul 23, 2021
1 parent b64b53d commit 7a2581f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
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' ? 0x333f52 : 0x333f52,
chartBackgroundColor: theme === 'light' ? 0x333f52 : 0x232323,
cursorColor: 0x259fd8,
lineColor: theme === 'light' ? 0x757575 : 0xbbbbbb
},
Expand Down

0 comments on commit 7a2581f

Please sign in to comment.