Could the date and time read across horizontally rather than one above the other?
Could the font match the one used with Theme Customizer?
Would it be possible to have the date format match the one suggested in "Language & region" in Settings menu?
str(self.time.day).zfill(X) + "Y" + str(self.time.month).zfill(X) + "Y" + str(self.time.year).zfill(X)
str(self.time.month).zfill(2) + "/" + str(self.time.day).zfill(2) + "/" + str(self.time.year).zfill(4)