From 43c7277a6067c19bef16617e0217446b213d4297 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 30 Dec 2025 13:06:41 -0800 Subject: [PATCH] macos: make surface grab handle visible in light mode --- macos/Sources/Ghostty/Surface View/SurfaceGrabHandle.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macos/Sources/Ghostty/Surface View/SurfaceGrabHandle.swift b/macos/Sources/Ghostty/Surface View/SurfaceGrabHandle.swift index d8ff49163..f3ee80874 100644 --- a/macos/Sources/Ghostty/Surface View/SurfaceGrabHandle.swift +++ b/macos/Sources/Ghostty/Surface View/SurfaceGrabHandle.swift @@ -15,13 +15,13 @@ extension Ghostty { var body: some View { VStack(spacing: 0) { Rectangle() - .fill(Color.white.opacity(isHovering || isDragging ? 0.15 : 0)) + .fill(Color.primary.opacity(isHovering || isDragging ? 0.15 : 0)) .frame(height: handleHeight) .overlay(alignment: .center) { if isHovering || isDragging { Image(systemName: "ellipsis") .font(.system(size: 14, weight: .semibold)) - .foregroundColor(.white.opacity(0.5)) + .foregroundColor(.primary.opacity(0.5)) } } .contentShape(Rectangle())