Skip to content

Commit

Permalink
Added text & background color options
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebash authored Jan 2, 2025
1 parent 203e0ab commit 62c90c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion LoopFollow/Storage/ObservableUserDefaults.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ class ObservableUserDefaults {
var contactEnabled = ObservableUserDefaultsValue<Bool>(key: "contactEnabled", default: false)
var contactTrend = ObservableUserDefaultsValue<Bool>(key: "contactTrend", default: false)
var contactDelta = ObservableUserDefaultsValue<Bool>(key: "contactDelta", default: false)
var contactColor = ObservableUserDefaultsValue<String>(key: "contactColor", default: "white")
var contactBackgroundColor = ObservableUserDefaultsValue<String>(key: "contactBackgroundColor", default: "black")
var contactTextColor = ObservableUserDefaultsValue<String>(key: "contactTextColor", default: "white")


private init() {}
Expand Down

0 comments on commit 62c90c6

Please sign in to comment.