From d07d15a6a02f84123ec0a5d1c61904c9efd23d4b Mon Sep 17 00:00:00 2001 From: highxshell Date: Tue, 9 Sep 2025 17:36:19 +0500 Subject: [PATCH] change bg color to white --- core/rfb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rfb.js b/core/rfb.js index 80011e4a..539f701e 100644 --- a/core/rfb.js +++ b/core/rfb.js @@ -40,7 +40,7 @@ import H264Decoder from "./decoders/h264.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 = 'rgb(255, 255, 255)'; // Minimum wait (ms) between two mouse moves const MOUSE_MOVE_DELAY = 17;