Refactor: Setting dayNightMod to be 80% instead of 10%

Signed-off-by: HeCodes2Much <wayne6324@gmail.com>
This commit is contained in:
HeCodes2Much
2024-07-19 20:34:19 +01:00
parent 66885800f5
commit 86b27976ba

View File

@@ -72,7 +72,7 @@ class AppHelper @Inject constructor() {
Configuration.UI_MODE_NIGHT_YES -> {
view.setBackgroundColor(
context.resources.getColor(
R.color.blackTrans10,
R.color.blackTrans80,
context.theme
)
)
@@ -81,7 +81,7 @@ class AppHelper @Inject constructor() {
Configuration.UI_MODE_NIGHT_NO -> {
view.setBackgroundColor(
context.resources.getColor(
R.color.whiteTrans10,
R.color.whiteTrans80,
context.theme
)
)