Made mountain rock darker

Former-commit-id: 2da60a1e6b69d2522773ee3aae5cf2d83a1d0396
This commit is contained in:
Joshua Barretto 2019-05-22 20:19:54 +01:00
parent 86bb277116
commit 31e25e8b09

View File

@ -140,8 +140,8 @@ impl WorldSim {
// Colours // Colours
let cold_grass = Rgb::new(0.0, 0.75, 0.25); let cold_grass = Rgb::new(0.0, 0.75, 0.25);
let warm_grass = Rgb::new(0.55, 0.9, 0.0); let warm_grass = Rgb::new(0.55, 0.9, 0.0);
let cold_stone = Rgb::new(0.78, 0.86, 1.0); let cold_stone = Rgb::new(0.65, 0.7, 0.85);
let warm_stone = Rgb::new(0.72, 0.7, 0.33); let warm_stone = Rgb::new(0.8, 0.6, 0.28);
let sand = Rgb::new(0.93, 0.84, 0.33); let sand = Rgb::new(0.93, 0.84, 0.33);
let snow = Rgb::broadcast(1.0); let snow = Rgb::broadcast(1.0);