Fix the color of the tabs

This commit is contained in:
Soh Satoh
2025-01-26 06:03:23 +09:00
parent 243641e7b0
commit 3d9e81eef7

View File

@ -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