From ee95f25d06fdf2d5b55eee4fb006b171740d6ffa Mon Sep 17 00:00:00 2001 From: vfsfitvnm Date: Sun, 5 Jun 2022 13:24:00 +0200 Subject: [PATCH] Use elevatedBackground color in DefaultDialog --- .../kotlin/it/vfsfitvnm/vimusic/ui/components/themed/Dialog.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/components/themed/Dialog.kt b/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/components/themed/Dialog.kt index 37e6f79..d41ef03 100644 --- a/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/components/themed/Dialog.kt +++ b/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/components/themed/Dialog.kt @@ -207,7 +207,7 @@ private inline fun DefaultDialog( modifier = modifier .padding(all = 48.dp) .background( - color = LocalColorPalette.current.lightBackground, + color = LocalColorPalette.current.elevatedBackground, shape = RoundedCornerShape(8.dp) ) .padding(horizontal = 24.dp, vertical = 16.dp),