updated comment

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2023-08-08 09:50:52 -05:00
parent 05fd22d2eb
commit f04c7875d1

View File

@ -72,11 +72,11 @@ public protocol KeyColorConfigurable: ObjectColorable {
extension KeyColorConfigurable {
/// Generic Method to set a KeyColorConfiguration with the parameters given
/// Generic Method to set a KeyColorConfiguration with the parameters given.
/// - Parameters:
/// - lightColor: Color used for a light
/// - darkColor: Color used for a dark
/// - key: <#key description#>
/// - lightColor: Color used for a light.
/// - darkColor: Color used for a dark.
/// - key: The key that you want to filter off of.
public func setSurfaceColors(_ lightColor: UIColor, _ darkColor: UIColor, forKey key: KeyType) {
keyColors.append(.init(key: key, surfaceConfig: .init(lightColor, darkColor)))
}