diff --git a/dvd_bounce/surfaces/dvd_screen.py b/dvd_bounce/surfaces/dvd_screen.py index bc2644c..4c7f400 100644 --- a/dvd_bounce/surfaces/dvd_screen.py +++ b/dvd_bounce/surfaces/dvd_screen.py @@ -57,9 +57,9 @@ class DVDLogo(pygame.sprite.Sprite): color_surface = pygame.Surface(self.image.get_size(), pygame.SRCALPHA) # Generate random RGB values and fill the color surface accordingly. - new_color = (random.randint(0, 255), - random.randint(0, 255), - random.randint(0, 255)) + new_color = (random.randint(32, 255), + random.randint(32, 255), + random.randint(32, 255)) color_surface.fill(new_color) # Replace the drawn image with a copy of the base image and apply the randomly generated color.