Signal-iOS/SignalUI/ViewControllers/CustomCellBackgroundColor.swift
2025-10-27 12:45:11 -07:00

12 lines
300 B
Swift

//
// 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
}