aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/utils
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2020-02-23 16:15:42 -0800
committerAllan Wang <me@allanwang.ca>2020-02-23 16:15:42 -0800
commitcd69ccf7c49f486a6c90a7cee0d32a74ea00247d (patch)
tree7db781b28d5fb5ec191cd213e77838a9c5b74815 /app/src/main/kotlin/com/pitchedapps/frost/utils
parent7b5bf87a3f5ce8f7fd3c95ed889076f4869f0310 (diff)
downloadfrost-cd69ccf7c49f486a6c90a7cee0d32a74ea00247d.tar.gz
frost-cd69ccf7c49f486a6c90a7cee0d32a74ea00247d.tar.bz2
frost-cd69ccf7c49f486a6c90a7cee0d32a74ea00247d.zip
Remove pref component from theme
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/utils')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
index 15d7ba9e..3d394abe 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
@@ -77,10 +77,10 @@ class Prefs(factory: KPrefFactory) : KPref("${BuildConfig.APPLICATION_ID}.prefs"
val t: Theme by loader
val textColor: Int
- get() = t.textColor
+ get() = t.textColorGetter(this)
val accentColor: Int
- get() = t.accentColor
+ get() = t.accentColorGetter(this)
inline val accentColorForWhite: Int
get() = when {
@@ -97,13 +97,13 @@ class Prefs(factory: KPrefFactory) : KPref("${BuildConfig.APPLICATION_ID}.prefs"
.withAlpha(30)
val bgColor: Int
- get() = t.bgColor
+ get() = t.backgroundColorGetter(this)
val headerColor: Int
- get() = t.headerColor
+ get() = t.headerColorGetter(this)
val iconColor: Int
- get() = t.iconColor
+ get() = t.iconColorGetter(this)
val themeInjector: InjectorContract
get() = t.injector