From 15f20ccf46f18ab6d235d89c2bec4a09ab997c2b Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Fri, 19 Apr 2024 09:53:29 -0500 Subject: [PATCH] change 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 1881e3a2..cb6a664a 100644 --- a/VDS/Protocols/Surfaceable.swift +++ b/VDS/Protocols/Surfaceable.swift @@ -13,7 +13,7 @@ import VDSTokens public enum Surface: String, Equatable { case light, dark public var color: UIColor { - return self == .dark ? VDSColor.backgroundPrimaryDark : VDSColor.backgroundSecondaryLight + return self == .dark ? VDSColor.backgroundPrimaryDark : VDSColor.backgroundPrimaryLight } }