Skip to content

Commit

Permalink
change button color
Browse files Browse the repository at this point in the history
  • Loading branch information
rutra8002 committed Jul 19, 2024
1 parent 5933112 commit 5b0d92e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/button.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def __init__(self, game, number, tooltip_text):
self.icon = pygame.transform.scale(self.icon, (button_width, button_height))
self.icon_rect = self.icon.get_rect(center=self.rect.center)
elif self.number == 7:
self.color = (20, 20, 20)
self.color = (60, 30, 20)
self.icon = images.blackhole
self.icon = pygame.transform.scale(self.icon, (button_width, button_height))
self.icon_rect = self.icon.get_rect(center=self.rect.center)
Expand Down

0 comments on commit 5b0d92e

Please sign in to comment.