Fix light theme colors

This commit is contained in:
Ensar Sarajčić
2023-10-02 10:42:18 +02:00
parent de2ce0ea73
commit cd02f52d12
4 changed files with 13 additions and 35 deletions

View File

@ -104,7 +104,7 @@ class BrightDisplayActivity : SimpleActivity() {
private val _timerVisible: MutableStateFlow<Boolean> = MutableStateFlow(false)
val timerVisible = _timerVisible.asStateFlow()
private val _backgroundColor: MutableStateFlow<Int> = MutableStateFlow(application.config.backgroundColor)
private val _backgroundColor: MutableStateFlow<Int> = MutableStateFlow(application.config.brightDisplayColor)
val backgroundColor = _backgroundColor.asStateFlow()
init {