Skip to content

Commit 9d78d0b

Browse files
authored
Merge pull request #3 from quintant/copilot/change-sun-color-to-blue
Change sun color from yellow to blue
2 parents 9e911d7 + a2a82e7 commit 9d78d0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spaceManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def iterate(self, screen):
245245
radius = max(1, int(mass ** (1/3)))
246246
if i == 0:
247247
# Draw the sun with a distinctive color
248-
color = (255, 255, 0) # Yellow color for the sun
248+
color = (0, 0, 255) # Blue color for the sun
249249
radius = max(radius, 8) # Ensure the sun is prominent
250250
else:
251251
color = (255, 255, 255) # White color for other particles

0 commit comments

Comments
 (0)