diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-04-04 21:00:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-04 11:00:38 -0700 |
commit | 5c59ec14c290d2a0867634af926ab7e657c0e189 (patch) | |
tree | 2ac90ea4d89c69bd693c9e556298f386257ce7d9 | |
parent | 94bc677ef5ffdf69fd952de41a59d8b5aac9a360 (diff) | |
download | voidsky-5c59ec14c290d2a0867634af926ab7e657c0e189.tar.zst |
Match placeholder color with other skeletons (#8129)
-rw-r--r-- | src/components/ProfileCard.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index a37432500..beb09cdc7 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -152,7 +152,7 @@ export function AvatarPlaceholder() { <View style={[ a.rounded_full, - t.atoms.bg_contrast_50, + t.atoms.bg_contrast_25, { width: 40, height: 40, @@ -203,7 +203,7 @@ export function NameAndHandlePlaceholder() { <View style={[ a.rounded_xs, - t.atoms.bg_contrast_50, + t.atoms.bg_contrast_25, { width: '60%', height: 14, @@ -214,7 +214,7 @@ export function NameAndHandlePlaceholder() { <View style={[ a.rounded_xs, - t.atoms.bg_contrast_50, + t.atoms.bg_contrast_25, { width: '40%', height: 10, @@ -275,7 +275,7 @@ export function DescriptionPlaceholder({ style={[ a.rounded_xs, a.w_full, - t.atoms.bg_contrast_50, + t.atoms.bg_contrast_25, {height: 12, width: i + 1 === numberOfLines ? '60%' : '100%'}, ]} /> |