From 356baa00e78337b2421525639f219fd649004f48 Mon Sep 17 00:00:00 2001 From: James Magahern Date: Mon, 14 Jun 2021 16:37:03 -0700 Subject: [PATCH] Border color tweak in dark mode --- App/Common UI/ReliefButton.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App/Common UI/ReliefButton.swift b/App/Common UI/ReliefButton.swift index 90f0ada..bf68f8d 100644 --- a/App/Common UI/ReliefButton.swift +++ b/App/Common UI/ReliefButton.swift @@ -111,7 +111,7 @@ class ReliefButton: UIButton setBackgroundInverted(isHighlighted) backgroundView.layer.borderColor = { traitCollection -> UIColor in if traitCollection.userInterfaceStyle == .dark { - return .init(white: 0.3, alpha: 1.0) + return .init(white: 0.34, alpha: 1.0) } else { return .white }