Skip to content

Commit

Permalink
#698 Improve colors
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Oct 4, 2022
1 parent 9c9668d commit 36735ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main/lib/helgoboss-learn
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ fn plot_build_outcome(ui: &mut Ui, build_outcome: &BuildOutcome) {
plot_ui.ctx().request_repaint();
let time = plot_ui.ctx().input().time;
let bar_color = if visuals.dark_mode {
Color32::WHITE
Color32::LIGHT_GRAY
} else {
Color32::BLACK
Color32::DARK_GRAY
};
plot_ui.vline(VLine::new(time % x).color(bar_color));
}
Expand Down

0 comments on commit 36735ff

Please sign in to comment.