mirror of
https://github.com/FossifyOrg/Phone.git
synced 2026-04-19 14:57:22 -04:00
Use elevated dialpad color in dark theme
This commit is contained in:
@@ -216,7 +216,14 @@ class CallActivity : SimpleActivity() {
|
||||
dialpadHashtagHolder.setOnClickListener { dialpadPressed('#') }
|
||||
}
|
||||
|
||||
dialpadWrapper.setBackgroundColor(getProperBackgroundColor())
|
||||
dialpadWrapper.setBackgroundColor(
|
||||
if (isUsingSystemDarkTheme()) {
|
||||
getProperBackgroundColor().lightenColor(2)
|
||||
} else {
|
||||
getProperBackgroundColor()
|
||||
}
|
||||
)
|
||||
|
||||
arrayOf(dialpadClose, callSimImage).forEach {
|
||||
it.applyColorFilter(getProperTextColor())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user