diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 9ce0f7e798..6ca538e98f 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -373,7 +373,7 @@ impl Hud { ); Text::new(&name) .font_size(20) - .color(Color::Rgba(0.33, 0.69, 0.65, 1.0)) + .color(Color::Rgba(0.61, 0.61, 0.89, 1.0)) .x_y(0.0, 0.0) .position_ingame(pos + Vec3::new(0.0, 0.0, 3.0)) .resolution(100.0) diff --git a/voxygen/src/scene/mod.rs b/voxygen/src/scene/mod.rs index d45f8a5aa1..04c1d1cc25 100644 --- a/voxygen/src/scene/mod.rs +++ b/voxygen/src/scene/mod.rs @@ -118,7 +118,7 @@ impl Scene { let tilt = self.camera.get_orientation().y; let dist = self.camera.get_distance(); self.camera - .set_focus_pos(player_pos + Vec3::unit_z() * (2.3 - tilt.min(0.0) * dist * 0.75)); + .set_focus_pos(player_pos + Vec3::unit_z() * (3.0 - tilt.min(0.0) * dist * 0.75)); // Tick camera for interpolation. self.camera.update(client.state().get_time());