From ea79ed7b64b3ad966ca8d0815564a7a3b9b2c307 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 4 Oct 2022 09:16:59 -0500 Subject: [PATCH] fixed background color Signed-off-by: Matt Bruce --- VDS/Protocols/Surfaceable.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VDS/Protocols/Surfaceable.swift b/VDS/Protocols/Surfaceable.swift index d1eec284..d5283a37 100644 --- a/VDS/Protocols/Surfaceable.swift +++ b/VDS/Protocols/Surfaceable.swift @@ -12,7 +12,7 @@ import VDSColorTokens public enum Surface: String, Codable, Equatable { case light, dark public var color: UIColor { - return self == .dark ? VDSColor.backgroundPrimaryDark : .clear + return self == .dark ? VDSColor.backgroundPrimaryDark : VDSColor.backgroundSecondaryLight } }