From 827a781f245a8dfb7108b012b3a5e27ea3fea366 Mon Sep 17 00:00:00 2001 From: Nicholas Dyer Date: Mon, 6 Jan 2025 22:53:20 -0500 Subject: [PATCH] changed brightness of mini logos (better for OLED) --- steam_saver/surfaces/steam_screen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/steam_saver/surfaces/steam_screen.py b/steam_saver/surfaces/steam_screen.py index dc0061f..5e85f91 100644 --- a/steam_saver/surfaces/steam_screen.py +++ b/steam_saver/surfaces/steam_screen.py @@ -82,9 +82,9 @@ class SteamLogo(pygame.sprite.Sprite): random.randint(64, 255), random.randint(64, 255)) - # If this is a mini logo, make it 90% darker + # If this is a mini logo, make it 80% darker if self.is_mini: - color_surface.fill(tuple(int(x / 10) for x in new_color)) + color_surface.fill(tuple(int(x / 5) for x in new_color)) else: # If not, make it the generated color. color_surface.fill(new_color)