diff --git a/app/appearance/boot/images/boot.svg b/app/appearance/boot/images/boot.svg
deleted file mode 100644
index 9eac1e81d..000000000
--- a/app/appearance/boot/images/boot.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
diff --git a/app/appearance/boot/index.html b/app/appearance/boot/index.html
index 6c9f92e3a..5755ce299 100644
--- a/app/appearance/boot/index.html
+++ b/app/appearance/boot/index.html
@@ -24,12 +24,14 @@
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
+ background-image: url('data:image/svg+xml,');
}
diff --git a/app/electron/main.js b/app/electron/main.js
index c474ddf79..4f9762230 100644
--- a/app/electron/main.js
+++ b/app/electron/main.js
@@ -245,7 +245,7 @@ const boot = () => {
// 创建主窗体
const currentWindow = new BrowserWindow({
show: false,
- backgroundColor: "#1e1f22",
+ backgroundColor: "#FFF", // 桌面端主窗体背景色设置为 `#FFF` Fix https://github.com/siyuan-note/siyuan/issues/4544
width: windowState.width,
height: windowState.height,
minWidth: 493,
@@ -675,7 +675,7 @@ app.whenReady().then(() => {
const mainScreen = screen.getDisplayNearestPoint({x: mainBounds.x, y: mainBounds.y});
const win = new BrowserWindow({
show: true,
- backgroundColor: "#1e1f22",
+ backgroundColor: "#FFF", // 桌面端主窗体背景色设置为 `#FFF` Fix https://github.com/siyuan-note/siyuan/issues/4544
trafficLightPosition: {x: 8, y: 13},
width: mainScreen.size.width * 0.7,
height: mainScreen.size.height * 0.9,