diff --git a/apple/OmnivoreKit/Sources/Utils/ColorUtils.swift b/apple/OmnivoreKit/Sources/Utils/ColorUtils.swift index faad3bbbc..66d5f4bc2 100644 --- a/apple/OmnivoreKit/Sources/Utils/ColorUtils.swift +++ b/apple/OmnivoreKit/Sources/Utils/ColorUtils.swift @@ -38,8 +38,8 @@ public extension Color { } var hex: String? { - if let hex = toHex() { - return "#\(hex)" + if let hexValue = toHex() { + return "#\(hexValue)" } else { return nil }