diff --git a/script.js b/script.js index 3335f3f..440bb18 100644 --- a/script.js +++ b/script.js @@ -34,12 +34,12 @@ let playerScore = 0; let computerScore = 0; function drawPaddle(paddle) { - ctx.fillStyle = '#fff'; + ctx.fillStyle = '#1100ff'; ctx.fillRect(paddle.x, paddle.y, paddle.width, paddle.height); } function drawBall() { - ctx.fillStyle = '#fff'; + ctx.fillStyle = '#1aff00'; ctx.fillRect(ball.x, ball.y, ball.size, ball.size); }