aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/injectors
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-01-04 01:35:52 -0500
committerGitHub <noreply@github.com>2019-01-04 01:35:52 -0500
commit8c77e02e89dfec7bff04a397dfc82613ccd1242a (patch)
treec3e37e8c7f2671347a5406344ce7070736bcbbd6 /app/src/main/kotlin/com/pitchedapps/frost/injectors
parentf162d238502855f21722fe9583638bc46ad397ff (diff)
downloadfrost-8c77e02e89dfec7bff04a397dfc82613ccd1242a.tar.gz
frost-8c77e02e89dfec7bff04a397dfc82613ccd1242a.tar.bz2
frost-8c77e02e89dfec7bff04a397dfc82613ccd1242a.zip
Theme (#1308)
* Add new attribute and theme messages page * Theme more components * Update comments and remove them from css files * Support at field in theme builder * Support at field in theme builder * Use wildcard matcher for menu overflow
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/injectors')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/injectors/CssAssets.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/injectors/CssAssets.kt b/app/src/main/kotlin/com/pitchedapps/frost/injectors/CssAssets.kt
index 77cb4de1..0caeda1a 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/injectors/CssAssets.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/injectors/CssAssets.kt
@@ -63,6 +63,7 @@ enum class CssAssets(val folder: String = THEME_FOLDER) : InjectorContract {
.replace("\$T\$", Prefs.textColor.toRgbaString())
.replace("\$TT\$", Prefs.textColor.colorToBackground(0.05f).toRgbaString())
.replace("\$A\$", Prefs.accentColor.toRgbaString())
+ .replace("\$AT\$", Prefs.iconColor.toRgbaString())
.replace("\$B\$", Prefs.bgColor.toRgbaString())
.replace("\$BT\$", bt)
.replace("\$BBT\$", bb.withAlpha(51).toRgbaString())