fix: Default slide background to white (#ffffff) instead of dark

This commit is contained in:
2026-05-26 10:03:45 +10:00
parent 1828897ba4
commit eb58cf16cf
+1 -1
View File
@@ -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) {