Index: flowtimer/RecurringPhaseSequence.py
===================================================================
--- flowtimer/RecurringPhaseSequence.py	(revision 59f6e9a1b938c3ef599b9d10be1159fc7c108f8e)
+++ flowtimer/RecurringPhaseSequence.py	(revision d9579ae38d6485d43e787c087a6d1bd02c7315a3)
@@ -45,5 +45,5 @@
     @property
     def title(self):
-        return self._title
+        return self.current_phase.title
 
     def current_phase_number(self):
@@ -82,6 +82,4 @@
         if not self.finished():
             result = self.current_phase.tick(ticks)
-            print("Current phase", self.current_phase)
-            print("Passes left:", self.passes_left)
             if self.current_phase.finished():
                 if self.upcoming_phases_in_pass():
@@ -89,5 +87,4 @@
                     self.current_phase = self.upcoming_phases_in_pass()[0]
                     self.current_phase.start()
-                    print("New phase:", self.current_phase)
                     self.tick(abs(result))
                     return True
Index: flowtimer/main.py
===================================================================
--- flowtimer/main.py	(revision 59f6e9a1b938c3ef599b9d10be1159fc7c108f8e)
+++ flowtimer/main.py	(revision d9579ae38d6485d43e787c087a6d1bd02c7315a3)
@@ -127,5 +127,5 @@
                 self.label_config_text.config(text=(self.schedule.current_phase.current_phase_number()+1,
                                                     "/", self.schedule.current_phase.current_phase_number()),
-                                              fg='blue',font="Times 48")
+                                              fg='blue', font="Times 48")
 
             else:
@@ -170,13 +170,15 @@
 
     def random_color(self, widget):
-        if self.schedule.current_phase.title == "B-Phase":
+        # FIXME: Do not hardcode this
+        print(self.schedule.current_phase.title)
+        if self.schedule.current_phase.title == "Huddle":
             widget.configure(bg="blue")
             self.label_sequence.config(text=("\n" + "Besprechung"))
             self.center_frame.configure(bg="blue")
-        if self.schedule.current_phase.title == "I-Phase":
+        if self.schedule.current_phase.title == "Tasking":
             widget.configure(bg="green")
             self.label_sequence.config(text=("\n" + "Intensivphase"))
             self.center_frame.configure(bg="green")
-        if self.schedule.current_phase.title == "S-Phase":
+        if self.schedule.current_phase.title == "Work":
             widget.configure(bg="gold")
             self.label_sequence.config(text=("\n" + "Synchronisation"))
