diff --git a/src/renderer/src/App.tsx b/src/renderer/src/App.tsx index ea069ff..a95222a 100644 --- a/src/renderer/src/App.tsx +++ b/src/renderer/src/App.tsx @@ -236,9 +236,6 @@ export function App(): React.ReactElement { useEffect(() => { if (activePanel === 'git') document.querySelector('.git-row.kbd')?.scrollIntoView({ block: 'nearest' }) }, [gitSel, activePanel]) - useEffect(() => { - if (activePanel === 'tree') document.querySelector('.tree-row.kbd')?.scrollIntoView({ block: 'nearest' }) - }, [treeSel, activePanel]) // Flash the branch ยท repository banner for ~2s each time the window *regains* // focus. We gate on a prior blur so the banner never shows on startup (or on diff --git a/src/renderer/src/terminals.tsx b/src/renderer/src/terminals.tsx index 585e1a9..566889f 100644 --- a/src/renderer/src/terminals.tsx +++ b/src/renderer/src/terminals.tsx @@ -23,7 +23,8 @@ const THEME = { foreground: '#e6e8ea', cursor: '#4d8dff', cursorAccent: '#1a1c1f', - selectionBackground: 'rgba(77,141,255,0.32)', + selectionBackground: 'rgba(77,141,255,0.55)', + selectionInactiveBackground: 'rgba(77,141,255,0.40)', black: '#16171a', red: '#e0696a', green: '#5cbd6b', yellow: '#d8a85c', blue: '#4d8dff', magenta: '#c98bdb', cyan: '#6ec0c0', white: '#b4bac2', brightBlack: '#5d636c', brightRed: '#e0696a', brightGreen: '#5cbd6b', brightYellow: '#d8a85c',