diff --git a/Signal/src/Loki/Components/VoiceMessageView2.swift b/Signal/src/Loki/Components/VoiceMessageView2.swift index 86eaeab99..61f429185 100644 --- a/Signal/src/Loki/Components/VoiceMessageView2.swift +++ b/Signal/src/Loki/Components/VoiceMessageView2.swift @@ -30,7 +30,7 @@ final class VoiceMessageView2 : UIView { private lazy var foregroundShapeLayer: CAShapeLayer = { let result = CAShapeLayer() - result.fillColor = Colors.accent.cgColor + result.fillColor = isLightMode ? UIColor.white.cgColor : Colors.accent.cgColor return result }()