From 37c91642784b353a28371e3db44a733cdfec65cb Mon Sep 17 00:00:00 2001 From: lucaronin Date: Sat, 21 Feb 2026 19:11:37 +0100 Subject: [PATCH] feat: set macOS window frame color to match sidebar background Set the window backgroundColor to #F7F6F3 (same as --sidebar CSS variable) in the Tauri window config. With titleBarStyle "Transparent", this makes the native macOS title bar area match the sidebar background color instead of defaulting to white. Co-Authored-By: Claude Opus 4.6 --- src-tauri/tauri.conf.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 5884f52c..04e74f15 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -18,7 +18,8 @@ "height": 900, "resizable": true, "fullscreen": false, - "titleBarStyle": "Transparent" + "titleBarStyle": "Transparent", + "backgroundColor": "#F7F6F3" } ], "security": {