Add system black theme (#3957)

Close #1222
This commit is contained in:
Mylloon 2023-09-13 11:14:20 +02:00 committed by GitHub
commit bb1868fd67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 3 deletions

View file

@ -5,7 +5,8 @@ enum class AppTheme(val value: String) {
DAY("day"),
BLACK("black"),
AUTO("auto"),
AUTO_SYSTEM("auto_system");
AUTO_SYSTEM("auto_system"),
AUTO_SYSTEM_BLACK("auto_system_black");
companion object {
fun stringValues() = values().map { it.value }.toTypedArray()