Fix divider color

This commit is contained in:
andrew 2023-07-06 12:03:33 +09:30
parent 8d66d948ca
commit efb5b27191

View File

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