From 5007b4fc286a3051b6b4979356f250e0dc56d008 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Fri, 19 Apr 2024 12:41:43 -0500 Subject: [PATCH] more contrast for light surface 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 cb6a664a..0ad804d6 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.backgroundPrimaryLight + return self == .dark ? VDSColor.backgroundPrimaryDark : .init(hexString: "#E3E3E3") } }