feat: Brighten sky, reduce cloud size, and remove color animation

This commit is contained in:
Kacper Kostka (aider)
2025-04-05 17:44:58 +02:00
parent d2a4927577
commit 853da1a61d
2 changed files with 15 additions and 24 deletions

View File

@@ -7,13 +7,12 @@ let debugMode = false;
// Sky background variables
const SKY_COLORS = [
'#1a2980', // Deep blue
'#2980b9', // Medium blue
'#6dd5fa', // Light blue
'#2980b9', // Medium blue
'#4a90e2', // Brighter blue
'#74b9ff', // Light blue
'#81ecec', // Very light blue/cyan
];
let skyAnimationTime = 0;
let skyAnimationSpeed = 0.0005; // Controls how fast the sky animates
let skyAnimationSpeed = 0.0005; // Controls how fast the sky position animates (not color)
// Initialize the simulation
window.onload = function() {