From 38f73faf315054a258f218c8916dc4f50086d2a0 Mon Sep 17 00:00:00 2001
From: rhenck <richard.henck@iqb.hu-berlin.de>
Date: Fri, 29 Oct 2021 18:25:10 +0200
Subject: [PATCH] [editor] Fix page background color input to correctly have
 the preset color shown

---
 projects/common/models/page.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/projects/common/models/page.ts b/projects/common/models/page.ts
index 20271b878..e95e62a00 100644
--- a/projects/common/models/page.ts
+++ b/projects/common/models/page.ts
@@ -9,7 +9,7 @@ export class Page {
   hasMaxWidth: boolean = false;
   maxWidth: number = 900;
   margin: number = 0;
-  backgroundColor: string = 'white';
+  backgroundColor: string = '#ffffff';
   alwaysVisible: boolean = false;
   alwaysVisiblePagePosition: 'left' | 'right' | 'top' | 'bottom' = 'left';
   alwaysVisibleAspectRatio: number = 50;
-- 
GitLab