From eb58cf16cfa4ab99b9f9d18f2462b4c4127d8879 Mon Sep 17 00:00:00 2001 From: jessikitty Date: Tue, 26 May 2026 10:03:45 +1000 Subject: [PATCH] fix: Default slide background to white (#ffffff) instead of dark --- wwwroot/js/display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwwroot/js/display.js b/wwwroot/js/display.js index 60a3648..1d36270 100644 --- a/wwwroot/js/display.js +++ b/wwwroot/js/display.js @@ -35,7 +35,7 @@ } function buildBgStyle(slide) { - var bg = slide.backgroundColor || '#0a0a14'; + var bg = slide.backgroundColor || '#ffffff'; var bgSize = slide.backgroundSize || 'cover'; var style = 'background-color:' + bg + ';'; if (slide.backgroundImage) {