From 3d9e81eef7a6d4bac23dccae162b4d14799db1bb Mon Sep 17 00:00:00 2001 From: Soh Satoh <20023945+sohsatoh@users.noreply.github.com> Date: Sun, 26 Jan 2025 06:03:23 +0900 Subject: [PATCH] Fix the color of the tabs --- .../Features/QuickTerminal/Tab/QuickTerminalTabItemView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macos/Sources/Features/QuickTerminal/Tab/QuickTerminalTabItemView.swift b/macos/Sources/Features/QuickTerminal/Tab/QuickTerminalTabItemView.swift index ec0afbd5a..f616ff521 100644 --- a/macos/Sources/Features/QuickTerminal/Tab/QuickTerminalTabItemView.swift +++ b/macos/Sources/Features/QuickTerminal/Tab/QuickTerminalTabItemView.swift @@ -31,8 +31,8 @@ struct QuickTerminalTabItemView: View { Rectangle() .fill( isSelected && !isSingleTab - ? Color(NSColor.windowBackgroundColor) - : (isHovered ? Color(red: 42/255, green: 42/255, blue: 42/255) : Color(NSColor.controlBackgroundColor))) + ? Color(NSColor.controlBackgroundColor) + : (isHovered ? Color(NSColor.underPageBackgroundColor) : Color(NSColor.windowBackgroundColor))) ) .onHover { hovering in isHovered = hovering