From 66927ca70cc2c54e2128d462ae67502a8281f822 Mon Sep 17 00:00:00 2001 From: David Kaspar Date: Sat, 12 Apr 2025 16:02:35 +0200 Subject: [PATCH] corrected profile picture border colour --- .../main/java/com/vitorpamplona/amethyst/ui/theme/Theme.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/theme/Theme.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/theme/Theme.kt index a4f60bb7b..294f42b4b 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/theme/Theme.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/theme/Theme.kt @@ -278,14 +278,14 @@ val darkLargeProfilePictureModifier = .width(120.dp) .height(120.dp) .clip(shape = CircleShape) - .border(3.dp, DarkColorPalette.background, CircleShape) + .border(3.dp, DarkColorPalette.onBackground, CircleShape) val lightLargeProfilePictureModifier = Modifier .width(120.dp) .height(120.dp) .clip(shape = CircleShape) - .border(3.dp, LightColorPalette.background, CircleShape) + .border(3.dp, LightColorPalette.onBackground, CircleShape) val RichTextDefaults = RichTextStyle().resolveDefaults()