about summary refs log tree commit diff
path: root/src/view
diff options
context:
space:
mode:
Diffstat (limited to 'src/view')
-rw-r--r--src/view/com/notifications/FeedItem.tsx4
-rw-r--r--src/view/com/post/Post.tsx1
2 files changed, 4 insertions, 1 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx
index e504ff39b..c71bf969a 100644
--- a/src/view/com/notifications/FeedItem.tsx
+++ b/src/view/com/notifications/FeedItem.tsx
@@ -166,7 +166,7 @@ export const FeedItem = observer(function FeedItem({
               style={styles.metaItem}
               href={authors[0].href}
               title={`@${authors[0].handle}`}>
-              <Text style={[s.f15, s.bold]}>
+              <Text style={[s.f15, s.bold, s.black]}>
                 {authors[0].displayName || authors[0].handle}
               </Text>
             </Link>
@@ -265,9 +265,11 @@ const styles = StyleSheet.create({
   },
   metaItem: {
     paddingRight: 3,
+    color: colors.black,
   },
   postText: {
     paddingBottom: 5,
+    color: colors.black,
   },
 
   addedContainer: {
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx
index a2911162a..fd23d6d47 100644
--- a/src/view/com/post/Post.tsx
+++ b/src/view/com/post/Post.tsx
@@ -229,6 +229,7 @@ const styles = StyleSheet.create({
     fontFamily: 'System',
     fontSize: 16,
     lineHeight: 20.8, // 1.3 of 16px
+    color: colors.black,
   },
   replyLine: {
     position: 'absolute',