func backgroundColor()

in Sources/UberCore/UberButton.swift [142:147]


        func backgroundColor(isHighlighted: Bool) -> UIColor {
            switch self {
            case .light: return isHighlighted ? .uberButtonHighlightedLightBackground : .uberButtonForeground
            case .dark: return isHighlighted ? .uberButtonHighlightedDarkBackground : .uberButtonBackground
            }
        }