/* Copyright 2024 New Vector Ltd. Copyright 2017 Vector Creations Ltd Copyright 2016 OpenMarket Ltd SPDX-License-Identifier: AGPL-3.0-only Please see LICENSE in the repository root for full details. */ #import "DeviceView.h" #import "ThemeService.h" #import "GeneratedInterface-Swift.h" @implementation DeviceView #pragma mark - Override MXKView -(void)customizeViewRendering { [super customizeViewRendering]; self.containerView.backgroundColor = ThemeService.shared.theme.headerBackgroundColor; self.textView.backgroundColor = ThemeService.shared.theme.backgroundColor; self.defaultTextColor = ThemeService.shared.theme.textPrimaryColor; self.cancelButton.tintColor = ThemeService.shared.theme.tintColor; self.deleteButton.tintColor = ThemeService.shared.theme.tintColor; self.renameButton.tintColor = ThemeService.shared.theme.tintColor; } @end