mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
608 B
Swift
19 lines
608 B
Swift
// Copyright © 2024 Rangeproof Pty Ltd. All rights reserved.
|
|
//
|
|
// stringlint:disable
|
|
|
|
import Foundation
|
|
|
|
public extension Setting.EnumKey {
|
|
/// Controls what theme should be used
|
|
static let theme: Setting.EnumKey = "selectedTheme"
|
|
|
|
/// Controls what primary color should be used for the theme
|
|
static let themePrimaryColor: Setting.EnumKey = "selectedThemePrimaryColor"
|
|
}
|
|
|
|
public extension Setting.BoolKey {
|
|
/// A flag indicating whether the app should match system day/night settings
|
|
static let themeMatchSystemDayNightCycle: Setting.BoolKey = "themeMatchSystemDayNightCycle"
|
|
}
|