|
@@ -0,0 +1,15 @@
|
|
|
|
|
+enum ColorSchemeOption: String, CaseIterable, Identifiable {
|
|
|
|
|
+ case system
|
|
|
|
|
+ case light
|
|
|
|
|
+ case dark
|
|
|
|
|
+
|
|
|
|
|
+ var id: String { self.rawValue }
|
|
|
|
|
+
|
|
|
|
|
+ var description: String {
|
|
|
|
|
+ switch self {
|
|
|
|
|
+ case .system: return "System"
|
|
|
|
|
+ case .light: return "Light"
|
|
|
|
|
+ case .dark: return "Dark"
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|