Fix small issues with the pure black theme

This commit is contained in:
2021-06-05 17:17:27 -05:00
parent 33468bfc1c
commit 2fe3b15806
5 changed files with 19 additions and 1 deletions

View File

@@ -109,6 +109,12 @@ open class DarkTheme : Theme() {
}
}
class PureBlackTheme : DarkTheme() {
override val appBackgroundColor = Color(0x000000)
override val cardBackgroundColor = Color(0x000000)
override val lowContrastTextColor = Color(0x212121)
}
class WidgetTheme : LightTheme() {
override val cardBackgroundColor = Color.TRANSPARENT
override val highContrastTextColor = Color.WHITE