diff --git a/cooperative_cuisine/pygame_2d_vis/gui.py b/cooperative_cuisine/pygame_2d_vis/gui.py index 4ad01fc36073e8402dc4c0fe45842dd045e8a048..20ff8d1acd3f2d02e36cb5a2cb33198f0ea8cbca 100644 --- a/cooperative_cuisine/pygame_2d_vis/gui.py +++ b/cooperative_cuisine/pygame_2d_vis/gui.py @@ -1443,21 +1443,21 @@ class PyGameGUI: duration_color_change = 60 if score > self.last_score: self.score_label.update_theming( - '{"colours": {"normal_text": "#03b706"}, "font": { "size": 20, "bold": 1}}' + '{"colours": {"normal_text": "#03b706"}, "font": { "size": 24, "bold": 1}}' ) self.count_frames_score_label = 0 self.switch_score_color = True elif score < self.last_score: self.score_label.update_theming( - '{"colours": {"normal_text": "#e22312"}, "font": { "size": 20, "bold": 1}}' + '{"colours": {"normal_text": "#e22312"}, "font": { "size": 24, "bold": 1}}' ) self.count_frames_score_label = 0 self.switch_score_color = True elif self.switch_score_color: if self.count_frames_score_label >= duration_color_change: self.score_label.update_theming( - '{"colours": {"normal_text": "#000000"}, "font": { "size": 20, "bold": 1}}' + '{"colours": {"normal_text": "#000000"}, "font": { "size": 24, "bold": 1}}' ) self.count_frames_score_label = 0 self.switch_score_color = False