Cleanup [BaseColorScheme.getColorScheme]
(cherry picked from commit 95d4df9ca80a88e87e633fc24c7fec677bc9d9b6)
This commit is contained in:
parent
32e4c85443
commit
7628f98b49
1 changed files with 10 additions and 13 deletions
|
|
@ -9,18 +9,15 @@ internal abstract class BaseColorScheme {
|
||||||
abstract val lightScheme: ColorScheme
|
abstract val lightScheme: ColorScheme
|
||||||
|
|
||||||
fun getColorScheme(isDark: Boolean, isAmoled: Boolean): ColorScheme {
|
fun getColorScheme(isDark: Boolean, isAmoled: Boolean): ColorScheme {
|
||||||
return (if (isDark) darkScheme else lightScheme)
|
if (!isDark) return lightScheme
|
||||||
.let {
|
|
||||||
if (isDark && isAmoled) {
|
if (!isAmoled) return darkScheme
|
||||||
it.copy(
|
|
||||||
background = Color.Black,
|
return darkScheme.copy(
|
||||||
onBackground = Color.White,
|
background = Color.Black,
|
||||||
surface = Color.Black,
|
onBackground = Color.White,
|
||||||
onSurface = Color.White,
|
surface = Color.Black,
|
||||||
)
|
onSurface = Color.White,
|
||||||
} else {
|
)
|
||||||
it
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue