From f065a75912cac143fa93d261b7119d9a18c8613f Mon Sep 17 00:00:00 2001 From: Boof2015 <75185879+Boof2015@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:04:44 -0400 Subject: [PATCH] clean up ui/ux --- src/main/index.ts | 4 ++++ src/renderer/styles/globals.css | 24 ++++++------------------ 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/src/main/index.ts b/src/main/index.ts index 7294209..6005a6e 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -267,6 +267,8 @@ function createMainWindow(): void { frame: false, transparent: false, backgroundColor: '#000000', + roundedCorners: false, + hasShadow: false, alwaysOnTop: true, autoHideMenuBar: true, resizable: true, @@ -370,6 +372,8 @@ function createScopePopoutWindow(kind: ScopeKind, rawBounds?: WindowBounds): Bro frame: false, transparent: false, backgroundColor: '#000000', + roundedCorners: false, + hasShadow: false, resizable: true, fullscreenable: false, maximizable: false, diff --git a/src/renderer/styles/globals.css b/src/renderer/styles/globals.css index eba95e3..454a3f6 100644 --- a/src/renderer/styles/globals.css +++ b/src/renderer/styles/globals.css @@ -39,9 +39,7 @@ body, width: 100%; height: 100%; overflow: hidden; - background: - radial-gradient(circle at top, rgba(var(--accent-rgb), 0.09), transparent 28%), - linear-gradient(180deg, #040506 0%, #000000 24%, #000000 100%); + background: #000000; color: var(--text-primary); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; @@ -96,12 +94,9 @@ select { min-height: 38px; padding: 4px 10px 0; gap: 10px; - background: - linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58)); + background: rgba(0, 0, 0, 0.74); backdrop-filter: blur(16px) saturate(1.05); -webkit-backdrop-filter: blur(16px) saturate(1.05); - border-bottom: 1px solid rgba(255, 255, 255, 0.06); - box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22); } .toolbar__grab { @@ -407,8 +402,7 @@ select { } .settings-panel { - background: linear-gradient(180deg, rgba(6, 8, 11, 0.98), rgba(4, 5, 7, 0.98)); - border-top: 1px solid rgba(255, 255, 255, 0.08); + background: rgba(5, 7, 10, 0.98); display: flex; flex-direction: column; gap: 12px; @@ -427,7 +421,6 @@ select { gap: 14px 18px; flex-wrap: wrap; padding: 0 14px 10px; - border-bottom: 1px solid rgba(255, 255, 255, 0.06); } .settings-utility-section { @@ -743,8 +736,7 @@ select { align-items: center; gap: 0; padding: 8px 0; - background: linear-gradient(180deg, rgba(4, 5, 7, 0.98), rgba(2, 3, 4, 0.98)); - border-top: 1px solid rgba(255, 255, 255, 0.06); + background: rgba(3, 4, 6, 0.98); flex-shrink: 0; } @@ -811,9 +803,7 @@ select { flex-direction: column; position: relative; overflow: hidden; - background: - radial-gradient(circle at top, rgba(var(--accent-rgb), 0.1), transparent 26%), - linear-gradient(180deg, rgba(3, 4, 6, 0.98), rgba(0, 0, 0, 1)); + background: #000000; color: var(--text-primary); } @@ -853,7 +843,6 @@ select { gap: 10px; min-height: 42px; padding: 8px 10px; - border-bottom: 1px solid rgba(255, 255, 255, 0.08); background: rgba(7, 10, 14, 0.92); } @@ -957,8 +946,7 @@ select { height: 100%; overflow-y: auto; overflow-x: hidden; - background: linear-gradient(180deg, rgba(6, 8, 11, 0.98), rgba(4, 5, 7, 0.98)); - border-top: 1px solid rgba(255, 255, 255, 0.06); + background: rgba(5, 7, 10, 0.98); padding: 12px 0 10px; }