import Foundation enum ThemeMode: String, CaseIterable, Identifiable { case system case light case dark var id: String { rawValue } var localizedName: String { switch self { case .system: return String(localized: "theme.system") case .light: return String(localized: "theme.light") case .dark: return String(localized: "theme.dark") } } }