From 2665b48e08712a2d6ecbc4aa993f25470464fa0d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 27 Jan 2026 23:51:10 +0000 Subject: [PATCH 1/2] Initial plan From ba64a73b3a335cc0a6ca34d325b0bf16663e12f2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 27 Jan 2026 23:54:01 +0000 Subject: [PATCH 2/2] Fix dark mode focus mode compatibility by increasing unfocused text opacity Co-authored-by: kristinaquinones <5562083+kristinaquinones@users.noreply.github.com> --- tibok/tibok/Views/EditorView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tibok/tibok/Views/EditorView.swift b/tibok/tibok/Views/EditorView.swift index a46d66f..7d8ab20 100644 --- a/tibok/tibok/Views/EditorView.swift +++ b/tibok/tibok/Views/EditorView.swift @@ -663,7 +663,7 @@ struct FindableTextEditor: NSViewRepresentable { // Determine alpha based on appearance (dark mode needs higher opacity for visibility) let appearance = NSApp.effectiveAppearance let isDarkMode = appearance.bestMatch(from: [.darkAqua, .aqua]) == .darkAqua - let dimmedAlpha: CGFloat = isDarkMode ? 0.5 : 0.3 + let dimmedAlpha: CGFloat = isDarkMode ? 0.65 : 0.3 // Dim all text first let fullRange = NSRange(location: 0, length: textStorage.length)