From d578beb52ba7fa75c45a2cba7ec1f17c99459180 Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Wed, 21 Jan 2026 20:45:52 +0100 Subject: [PATCH] style(electron): make custom window title bar fully transparent --- electron/main-window.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/electron/main-window.ts b/electron/main-window.ts index 6c4f8db97..b98fc2a72 100644 --- a/electron/main-window.ts +++ b/electron/main-window.ts @@ -33,9 +33,9 @@ let mainWin: BrowserWindow; * Semi-transparent to ensure window controls are always visible. */ const getTitleBarColor = (isDark: boolean): string => { - // Dark: matches --bg (#131314) with 95% opacity - // Light: matches --bg (#f8f8f7) with 95% opacity - return isDark ? 'rgba(19, 19, 20, 0.95)' : 'rgba(248, 248, 247, 0.95)'; + // Dark: matches --bg (#131314) with 0% opacity (fully transparent) + // Light: matches --bg (#f8f8f7) with 0% opacity (fully transparent) + return isDark ? 'rgba(19, 19, 20, 0)' : 'rgba(248, 248, 247, 0)'; }; const mainWinModule: {