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 } }