Fix divider color

This commit is contained in:
andrew 2023-07-06 12:03:33 +09:30
parent 8d66d948ca
commit efb5b27191
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ fun AppTheme(
val extraColors = LocalContext.current.run {
ExtraColors(
cell = getColorFromTheme(R.attr.colorCellBackground),
divider = getColorFromTheme(R.attr.dividerHorizontal),
divider = getColorFromTheme(R.attr.dividerHorizontal).copy(alpha = 0.15f),
settingsBackground = getColorFromTheme(R.attr.colorSettingsBackground)
)
}