From 43afd03fc460b7a3b71e579f6cc21dab34a22466 Mon Sep 17 00:00:00 2001 From: maxluli Date: Mon, 9 May 2022 14:11:03 +0200 Subject: [PATCH] Change Background Color to something less eyes-burning --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 8e13225..c96cc25 100644 --- a/src/main.rs +++ b/src/main.rs @@ -85,7 +85,7 @@ impl GameState{ impl State for GameState{ fn draw(&mut self, ctx: &mut Context) -> tetra::Result { - graphics::clear(ctx,Color::rgb(0.329,0.584,0.929)); + graphics::clear(ctx,Color::hex("#CCCCCC")); self.player1.texture.draw(ctx,self.player1.position); self.player2.texture.draw(ctx,self.player2.position);