Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
signalapp
GitHub Repository: signalapp/Signal-iOS
Path: blob/main/SignalUI/ViewControllers/CustomCellBackgroundColor.swift
1 views
//
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//

import UIKit

public protocol CustomBackgroundColorCell: UITableViewCell {
    func customBackgroundColor(forceDarkMode: Bool) -> UIColor
    func customSelectedBackgroundColor(forceDarkMode: Bool) -> UIColor
}