mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-08-02 14:57:31 +03:00
Fix the color of the tabs
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user