From cdf3908a3fff8c5028aa7308db0b6ef5c5c45a7d Mon Sep 17 00:00:00 2001 From: Balthasar Reuter Date: Fri, 29 May 2015 00:36:34 +0200 Subject: [PATCH] Background is now black instead of white --- photobooth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/photobooth.py b/photobooth.py index 9a349d0..0b7aac5 100755 --- a/photobooth.py +++ b/photobooth.py @@ -99,7 +99,7 @@ class GUI_PyGame: # Clear screen self.clear() - def clear(self, color=(255,255,255)): + def clear(self, color=(0,0,0)): self.screen.fill(color) def apply(self): @@ -129,7 +129,7 @@ class GUI_PyGame: # Choose font font = pygame.font.Font(None, 48) # Render text - text = font.render(msg, 1, (10,10,10)) + text = font.render(msg, 1, (245,245,245)) # Position and display text textpos = text.get_rect() textpos.centerx = self.screen.get_rect().centerx