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() Rectangle()
.fill( .fill(
isSelected && !isSingleTab isSelected && !isSingleTab
? Color(NSColor.windowBackgroundColor) ? Color(NSColor.controlBackgroundColor)
: (isHovered ? Color(red: 42/255, green: 42/255, blue: 42/255) : Color(NSColor.controlBackgroundColor))) : (isHovered ? Color(NSColor.underPageBackgroundColor) : Color(NSColor.windowBackgroundColor)))
) )
.onHover { hovering in .onHover { hovering in
isHovered = hovering isHovered = hovering