From 4e63dc6e3a2f116ffa09c942ddf93e6e8fd3e902 Mon Sep 17 00:00:00 2001 From: Kaleb Efflandt <72526467+macarooni-man@users.noreply.github.com> Date: Wed, 14 Feb 2024 17:22:10 -0600 Subject: [PATCH] Update rfb.js --- core/rfb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rfb.js b/core/rfb.js index 3de2c1db..2336e448 100644 --- a/core/rfb.js +++ b/core/rfb.js @@ -39,7 +39,7 @@ import JPEGDecoder from "./decoders/jpeg.js"; // How many seconds to wait for a disconnect to finish const DISCONNECT_TIMEOUT = 3; -const DEFAULT_BACKGROUND = 'rgb(40, 40, 40)'; +const DEFAULT_BACKGROUND = '#1D1D2E'; // Minimum wait (ms) between two mouse moves const MOUSE_MOVE_DELAY = 17;