Signal-iOS/SignalUI/ViewControllers/CustomCellBackgroundColor.swift
2023-02-01 11:33:37 -08:00

12 lines
283 B
Swift

//
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import UIKit
public protocol CustomBackgroundColorCell {
func customBackgroundColor(forceDarkMode: Bool) -> UIColor
func customSelectedBackgroundColor(forceDarkMode: Bool) -> UIColor
}