Skip to content

Commit 62e41e9

Browse files
committed
Improve terminal tab spacing and light mode selection visibility
1 parent b4001fa commit 62e41e9

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

apps/code/src/renderer/features/panels/components/DraggableTab.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export const DraggableTab: React.FC<DraggableTabProps> = ({
130130
align="center"
131131
gap="1"
132132
pl="3"
133-
pr={onClose ? "1" : "3"}
133+
pr={onClose ? "2" : "3"}
134134
className={`group relative flex-shrink-0 select-none border-r border-b-2 transition-colors ${draggable ? "cursor-grab" : "cursor-pointer"}`}
135135
style={{
136136
borderRightColor: "var(--gray-6)",
@@ -178,6 +178,7 @@ export const DraggableTab: React.FC<DraggableTabProps> = ({
178178
<Box
179179
style={{
180180
width: "14px",
181+
marginLeft: "2px",
181182
display: "flex",
182183
alignItems: "center",
183184
justifyContent: "center",

apps/code/src/renderer/features/terminal/services/TerminalManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function getTerminalTheme(isDarkMode: boolean) {
8686
foreground: "#0d0d0d",
8787
cursor: "#f54d00",
8888
cursorAccent: "#f2f3ee",
89-
selectionBackground: "rgba(245, 77, 0, 0.2)",
89+
selectionBackground: "rgba(245, 77, 0, 0.95)",
9090
selectionForeground: "#0d0d0d",
9191
};
9292
}

0 commit comments

Comments
 (0)