diff --git a/src/view/com/util/LoadingPlaceholder.tsx b/src/view/com/util/LoadingPlaceholder.tsx
index 5ccd1bd149..3fcb07b510 100644
--- a/src/view/com/util/LoadingPlaceholder.tsx
+++ b/src/view/com/util/LoadingPlaceholder.tsx
@@ -93,14 +93,14 @@ export function PostLoadingPlaceholder({
-
+
-
+
diff --git a/src/view/com/util/PostCtrls.tsx b/src/view/com/util/PostCtrls.tsx
index 144351d859..a316d89591 100644
--- a/src/view/com/util/PostCtrls.tsx
+++ b/src/view/com/util/PostCtrls.tsx
@@ -22,6 +22,9 @@ interface PostCtrlsOpts {
onPressToggleUpvote: () => void
}
+const redgray = '#7A6161'
+const sRedgray = {color: redgray}
+
export function PostCtrls(opts: PostCtrlsOpts) {
const interp1 = useSharedValue(0)
const interp2 = useSharedValue(0)
@@ -59,9 +62,9 @@ export function PostCtrls(opts: PostCtrlsOpts) {
- {opts.replyCount}
+ {opts.replyCount}
@@ -74,14 +77,14 @@ export function PostCtrls(opts: PostCtrlsOpts) {
opts.isReposted ? styles.ctrlIconReposted : styles.ctrlIcon
}
icon="retweet"
- size={20}
+ size={18}
/>
{opts.repostCount}
@@ -93,16 +96,16 @@ export function PostCtrls(opts: PostCtrlsOpts) {
onPress={onPressToggleUpvoteWrapper}>
{opts.isUpvoted ? (
-
+
) : (
-
+
)}
{opts.upvoteCount}
@@ -123,7 +126,7 @@ const styles = StyleSheet.create({
paddingRight: 4,
},
ctrlIcon: {
- color: colors.gray4,
+ color: redgray,
},
ctrlIconReposted: {
color: colors.green3,